a better message on illegal moves in Brown Island

This commit is contained in:
Zeno Rogue 2019-04-05 13:42:36 +02:00
parent f5d08e34fd
commit 05ee76015f
1 changed files with 2 additions and 0 deletions

View File

@ -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));
}