Skip to content
Snippets Groups Projects
Commit ed8ada90 authored by Ahmed Yusuf's avatar Ahmed Yusuf
Browse files

small changes

parent 54a77b94
No related branches found
No related tags found
No related merge requests found
......@@ -190,6 +190,8 @@ def execute_drop(item_id):
def time_taken():
current_time = datetime.now()
time_taken = (current_time - start_time).total_seconds()
if time_penalty:
time_taken = time_taken + 300
minutes = time_taken // 60
seconds = time_taken % 60
time = [round(minutes), round(seconds)]
......
......@@ -44,7 +44,7 @@ unpowered_torch = {
"pick-up": True
}
powered_torch = {
"id": "powered torch",
"id": "powered-torch",
"name": "a torch with batteries",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment