diff options
| -rw-r--r-- | weatbag/tiles/n3w2.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/weatbag/tiles/n3w2.py b/weatbag/tiles/n3w2.py index 9b0ff9e..61775f6 100644 --- a/weatbag/tiles/n3w2.py +++ b/weatbag/tiles/n3w2.py @@ -19,7 +19,7 @@ class Tile: "across if you like!") def action(self, player, do): - if (do[0] in words.use or do[0] in words.give) and do[1]=='catfood': + if (do[0] in words.use or do[0] in words.give) and do[1]=='catfood': # I only added words.use because player might # use the word "use" insteed of "give". |
