1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-10-31 19:36:16 +00:00

break ice into Cocytus

This commit is contained in:
Zeno Rogue 2017-10-17 01:51:27 +02:00
parent 4cef0e2cfb
commit d8b908b89d

View File

@ -1880,7 +1880,7 @@ namespace heat {
if(!isIcyLand(ct)) { if(!isIcyLand(ct)) {
// make sure that we can still enter Cocytus, // make sure that we can still enter Cocytus,
// it won't heat up right away even without Orb of Winter or Orb of Speed // it won't heat up right away even without Orb of Winter or Orb of Speed
if(isPlayerOn(ct) && (c->land == laIce || markOrb(itOrbWinter))) if(isPlayerOn(ct) && (c->land != laCocytus || markOrb(itOrbWinter)))
hmod += (markOrb(itOrbWinter) ? -1.2 : 1.2) / 4 * xrate; hmod += (markOrb(itOrbWinter) ? -1.2 : 1.2) / 4 * xrate;
continue; continue;
} }