1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-05-05 16:54:08 +00:00

fixed pushing thumpers on chasms

This commit is contained in:
Zeno Rogue 2017-08-18 03:39:55 +02:00
parent 9d511e5526
commit dfa345632a

View File

@ -6262,7 +6262,7 @@ void pushThumper(cell *th, cell *cto) {
addMessage(XLAT("%The1 falls!", waThumperOn));
doesFallSound(cto);
}
else if(cellUnstable(cto)) {
else if(cellUnstableOrChasm(cto)) {
addMessage(XLAT("%The1 fills the hole!", waThumperOn));
cto->wall = waTempFloor;
}