From 967a20886a851f910c153b6c15d4c3baf882b2d9 Mon Sep 17 00:00:00 2001
From: Ahmed Yusuf <yusufa7@cardiff.ac.uk>
Date: Tue, 25 Oct 2022 20:43:15 +0100
Subject: [PATCH] bug fixes

---
 Group_game/map.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Group_game/map.py b/Group_game/map.py
index e6731d6..97fe2a6 100644
--- a/Group_game/map.py
+++ b/Group_game/map.py
@@ -112,12 +112,13 @@ trap_door = {
     "name": "trap door",
     "description": "The trap door is locked! There is an electrocated lock, you could use your key again but there is no guarantee it would work and there is no power in this lock. ",
     "exits": {"west": "entrance"},
-    "open": False
+    "open": False,
     "items": [item_lock]
 }
 closet = {
     "name": "closet",
     "description": "You are amazed that the door is now mysteriously open, wondering how it happened you inspect it further. The closet is wooden with dusty shelves and old literary texts. There is a key card here as well.",
+    "open": False,
     "exits": {},
     "items": [key_card]
 }
-- 
GitLab