From a1eab8d183a1fc2148bedd084f01abdf8eb56990 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 26 Feb 2020 01:37:17 +0100 Subject: [PATCH] heat in Eclectic --- complex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/complex.cpp b/complex.cpp index 1d3dd75d..34763ec1 100644 --- a/complex.cpp +++ b/complex.cpp @@ -2001,7 +2001,7 @@ EX namespace heat { EX double absheat(cell *c) { if(c->land == laCocytus) return HEAT(c) -.6; - if(c->land == laIce || c->land == laBlizzard) return HEAT(c) -.4; + if(c->land == laIce || c->land == laBlizzard || c->land == laEclectic) return HEAT(c) -.4; return 0; }