1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-07 17:23:00 +00:00

magma fills water, wolves change

This commit is contained in:
Zeno Rogue
2017-10-10 12:42:30 +02:00
parent 0505bd727c
commit 035f1ad8de
2 changed files with 37 additions and 5 deletions

View File

@@ -1869,8 +1869,12 @@ namespace heat {
if(isFire(c)) hmod += 4 * xrate;
if(isPrincess(c->monst)) hmod += (markEmpathy(itOrbWinter) ? -1.2 : 1.2) * xrate;
forCellEx(ct, c) if(!isIcyLand(ct) && isFire(ct))
hmod += xrate*.1;
forCellEx(ct, c) {
if(!isIcyLand(ct) && isFire(ct))
hmod += xrate*.1;
if(ct->land == laVolcano)
hmod += xrate * (ct->wall == waMagma ? .4 : .2);
}
forCellEx(ct, c) {
if(!isIcyLand(ct)) {