1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-02-02 12:19:18 +00:00

fixed the last commit

This commit is contained in:
Zeno Rogue 2017-10-30 09:11:47 +01:00
parent ce78030e8a
commit a6f47f6c90

View File

@ -7261,8 +7261,8 @@ bool movepcto(int d, int subdir, bool checkonly) {
addMessage(XLAT("You would get hurt!", c2->wall));
else if(cellEdgeUnstable(cwt.c) && cellEdgeUnstable(c2))
addMessage(XLAT("Gravity does not allow this!"));
else if(c2.c->wall == waChasm && c2.c->land == laDual)
addMessage(XLAT("You cannot move there!");
else if(c2->wall == waChasm && c2->land == laDual)
addMessage(XLAT("You cannot move there!"));
else {
addMessage(XLAT("You cannot move through %the1!", c2->wall));
}