From dfa345632a23660ae5a6fe3b883dbd246bca935b Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 18 Aug 2017 03:39:55 +0200 Subject: [PATCH] fixed pushing thumpers on chasms --- game.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game.cpp b/game.cpp index 3accca3f..bed49004 100644 --- a/game.cpp +++ b/game.cpp @@ -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; }