1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2026-04-27 02:51:23 +00:00

(incomplete) some preparation for the Lovasz Conjecture achievement

This commit is contained in:
Zeno Rogue
2021-03-21 11:30:42 +01:00
parent ee1837e3d8
commit e57fc630b4
4 changed files with 17 additions and 2 deletions

View File

@@ -1304,7 +1304,10 @@ EX void playerMoveEffects(movei mi) {
drainOrb(itOrbAether, 2);
}
if(cellUnstable(c2) && !markOrb(itOrbAether)) doesFallSound(c2);
if(cellUnstable(c2) && !markOrb(itOrbAether)) {
doesFallSound(c2);
if(c2->land == laMotion && c2->wall == waChasm) c2->mondir = mi.rev_dir_or(NODIR);
}
if(c2->wall == waStrandedBoat && markOrb(itOrbWater))
c2->wall = waBoat;