summaryrefslogtreecommitdiff
path: root/scripts/player.gd
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/player.gd')
-rw-r--r--scripts/player.gd2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/player.gd b/scripts/player.gd
index 746d2d9..59ffb06 100644
--- a/scripts/player.gd
+++ b/scripts/player.gd
@@ -36,10 +36,8 @@ func get_item_count(id):
return storage[id]
func remove_item(id, amount):
- print("remove", id, amount)
if storage.has(id) and storage[id] >= amount:
storage[id] -= amount
- print("new amount", storage[id])
_update_storage(id, storage[id])
func _update_funds():