From 916702cc66feb9fc8ba78e52a5f26eb9f404b7a7 Mon Sep 17 00:00:00 2001 From: Kleopatra Angelidi Date: Wed, 24 Apr 2013 00:11:38 +0300 Subject: added m0ar catfood ^__^ --- weatbag/tiles/n2w5.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'weatbag') 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.") -- cgit v1.3