summaryrefslogtreecommitdiffstats
path: root/weatbag
diff options
context:
space:
mode:
authorKleopatra Angelidi <akleop@gmail.com>2013-04-24 00:11:38 +0300
committerKleopatra Angelidi <akleop@gmail.com>2013-04-29 03:21:17 +0300
commit916702cc66feb9fc8ba78e52a5f26eb9f404b7a7 (patch)
treeb4abc944c188b3b266a5aba8101017c191a694d9 /weatbag
parenta0b3849ab9e7ac2c36c7dc27b30cf486f619db30 (diff)
added m0ar catfood ^__^
Diffstat (limited to 'weatbag')
-rw-r--r--weatbag/tiles/n2w5.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/weatbag/tiles/n2w5.py b/weatbag/tiles/n2w5.py
index d1c94ab..15c5b63 100644
--- a/weatbag/tiles/n2w5.py
+++ b/weatbag/tiles/n2w5.py
@@ -3,7 +3,7 @@ from weatbag.utils import transfer
class Tile:
def __init__(self):
- self.contents = {'catfood': 1}
+ self.contents = {'catfood': 2}
def describe(self):
if self.contents['catfood']:
@@ -20,7 +20,7 @@ class Tile:
print("Sorry, I don't understand.")
def take_catfood(self, player):
- if transfer('catfood', self.contents, player.inventory):
+ if transfer('catfood', self.contents, player.inventory, n=2):
print("You did wise. You took the catfood!")
else:
print("There is nothing here.")