From 814b7f76433853726701ce20e1838e67abbceed7 Mon Sep 17 00:00:00 2001 From: Chris Proctor Date: Sat, 7 Sep 2024 10:47:58 -0400 Subject: [PATCH] Use same reference for timer file--just a cleanup --- return_to_ship.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/return_to_ship.py b/return_to_ship.py index dd6446e..28a5ff0 100644 --- a/return_to_ship.py +++ b/return_to_ship.py @@ -35,7 +35,7 @@ VICTORY = [ def reset(): if Path('bag').exists(): rmtree('bag') - Path('adventure/seafloor/coral_reef/.timer').unlink() + Path(CHEST_TIMER_FILE).unlink() def win(): print_fancy(VICTORY)