diff options
Diffstat (limited to 'inc/shop.inc')
-rw-r--r-- | inc/shop.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/inc/shop.inc b/inc/shop.inc index 49ee20b..32ecea2 100644 --- a/inc/shop.inc +++ b/inc/shop.inc @@ -60,5 +60,11 @@ function buyItem() { } } +function useItem(){ + $item = getItem($_POST["item"]); + $it = Inventory::useItem($item); + echo json_encode($it); +} + ?> |