From 060949be79804491c5eb32b49f0e195dfb859ef0 Mon Sep 17 00:00:00 2001 From: colebrooke Date: Sun, 10 Dec 2017 09:35:41 +0000 Subject: [PATCH] you can now type i or inv for inventory --- adventure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adventure.py b/adventure.py index b0eca22..5802c53 100755 --- a/adventure.py +++ b/adventure.py @@ -706,7 +706,7 @@ def look (): elif (userinput == "se") or (userinput == "south east"): direction = "se"; move ( direction, userid ) # Inventory - elif (userinput == "i") or (userinput == "inventory"): inventory () + elif (userinput == "i") or (userinput =="inv") or (userinput == "inventory"): inventory () # Take / Pick up elif re.match ( r'^take', userinput ) or \