diff options
| -rw-r--r-- | weatbag/tiles/n2w5.py | 4 |
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.") |
