aboutsummaryrefslogtreecommitdiffstats
path: root/inc/shop.inc
diff options
context:
space:
mode:
authoralexichi <alexbankai96@gmail.com>2016-05-07 12:08:36 +0200
committeralexichi <alexbankai96@gmail.com>2016-05-07 12:08:36 +0200
commit79cfbb29042fd60dfbc76a6810f75cce21d3ffe0 (patch)
treeed1425c2bf94fd7e2b068bfe64134e0689f83285 /inc/shop.inc
parentee02581b7fabd087fc4056bda739c88656fbca14 (diff)
downloadcandybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.gz
candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.bz2
candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.tar.xz
candybox-79cfbb29042fd60dfbc76a6810f75cce21d3ffe0.zip
add the use of the life bottle
Diffstat (limited to 'inc/shop.inc')
-rw-r--r--inc/shop.inc6
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);
+}
+
?>