diff options
-rw-r--r-- | engines/mortevielle/actions.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp index 7949d93b38..86c03b41d1 100644 --- a/engines/mortevielle/actions.cpp +++ b/engines/mortevielle/actions.cpp @@ -70,9 +70,12 @@ void MortevielleEngine::fctMove() { } else if (g_num == 7) { g_s._currPlace = ATTIC; _menu.setDestinationMenuText(ATTIC); - } else if (g_num != 6) + } + + if (g_num != 6) g_s._currPlace = ROOM26; - else if ((g_num > 1) && (g_num < 6)) + + if ((g_num > 1) && (g_num < 6)) g_ment = g_num - 1; else if (g_num > 7) g_ment = g_num - 3; |