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
commit fa0d1978f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

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) {