1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-03-09 14:49:43 +00:00

Orb of Vaulting and Dark Frogs can now jump over trees and explosive barrels

This commit is contained in:
Zeno Rogue
2020-03-01 00:19:56 +01:00
parent 3f5af1f5bd
commit 561ce1a141
3 changed files with 21 additions and 3 deletions

View File

@@ -578,6 +578,8 @@ EX void moverefresh(bool turn IS(true)) {
else if(isFire(c)) {
if(c->monst == moSalamander) c->stuntime = max<int>(c->stuntime, 1);
else if(c->monst == moVaulter && c->mondir == JUMP)
c->mondir = NODIR;
else if(c->monst && !survivesFire(c->monst) && !isWorm(c->monst)) {
addMessage(XLAT("%The1 burns!", c->monst));
if(isBull(c->monst)) {