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

Merge pull request #188 from jruderman/push_dice_item

Dice can now be pushed onto items
This commit is contained in:
Zeno Rogue
2021-07-10 09:45:45 +02:00
committed by GitHub

View File

@@ -430,7 +430,7 @@ EX bool canPushThumperOn(movei mi, cell *player) {
return
passable(tgt, thumper, P_MIRROR) &&
passable(tgt, player, P_MIRROR) &&
!tgt->item;
(!tgt->item || dice::on(thumper));
}
EX void activateActiv(cell *c, bool msg) {