From 05ee76015f94d2be317232870ce0281bc15cf10e Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 5 Apr 2019 13:42:36 +0200 Subject: [PATCH] a better message on illegal moves in Brown Island --- game.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/game.cpp b/game.cpp index a1447788..fbaa6f77 100644 --- a/game.cpp +++ b/game.cpp @@ -8114,6 +8114,8 @@ bool movepcto(int d, int subdir, bool checkonly) { } else if(c2->wall == waChasm && c2->land == laDual) addMessage(XLAT("You cannot move there!")); + else if(!c2->wall) + addMessage(XLAT("You cannot move there!")); else { addMessage(XLAT("You cannot move through %the1!", c2->wall)); }