1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-16 13:48:04 +00:00

forgot a parenthesis

This commit is contained in:
bacchelordoh
2025-09-12 22:38:26 -05:00
committed by GitHub
parent e9629969d2
commit d0ba5142f1

View File

@@ -259,7 +259,7 @@ EX bool earthWall(cell *c) {
c->wall = waChasm;
return true;
}
if(c->wall == waNone && among(c->land, laTerracotta, laMercuryRiver) {
if(c->wall == waNone && among(c->land, laTerracotta, laMercuryRiver)) {
c->wall = waMercury;
return true;
}