From 201f0f9a402534de68e6f944902291e24cc93d0b Mon Sep 17 00:00:00 2001 From: Jason Self Date: Sun, 12 Jun 2022 15:54:03 -0700 Subject: [PATCH] Fix scoring problem --- src/snowed-in.inf | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/snowed-in.inf b/src/snowed-in.inf index 012f30f..b92c920 100644 --- a/src/snowed-in.inf +++ b/src/snowed-in.inf @@ -296,10 +296,10 @@ Object office "Office" print_ret "You can't fit through the window while wearing the snow shoes."; - } - if (eastofcabin hasnt visited) { - score = score + 1; - give office visited; + if (eastofcabin hasnt visited) { + score = score + 1; + give office visited; + } } ], w_to mainroom, -- 2.31.1