1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-31 01:37:57 +00:00

fixed invalid error messages on Animated Dice validity tests

This commit is contained in:
Zeno Rogue
2021-05-30 13:10:00 +02:00
parent 03c41443c4
commit 8f28497f26
3 changed files with 6 additions and 2 deletions

View File

@@ -413,7 +413,7 @@ EX void pushThumper(const movei& mi) {
EX bool canPushThumperOn(movei mi, cell *player) {
cell *thumper = mi.s;
cell *tgt = mi.t;
if(among(thumper->wall, waRichDie, waHappyDie) && !dice::can_roll(mi))
if(dice::on(thumper) && !dice::can_roll(mi))
return false;
if(tgt->wall == waBoat || tgt->wall == waStrandedBoat) return false;
if(isReptile(tgt->wall)) return false;