mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2026-05-07 07:41:23 +00:00
reverted the blizzard_mul change
This commit is contained in:
@@ -2136,9 +2136,6 @@ EX namespace heat {
|
||||
if(arcm::in()) divby *= 2;
|
||||
if(WDIM == 3) divby *= 2;
|
||||
|
||||
ld blizzard_mul = 5;
|
||||
if(UNRECTIFIED && S3 == 4) blizzard_mul = 1;
|
||||
|
||||
for(int i=0; i<dcs; i++) {
|
||||
cell *c = allcells[i];
|
||||
double xrate = (c->land == laCocytus && shmup::on) ? 1/3. : 1;
|
||||
@@ -2202,7 +2199,7 @@ EX namespace heat {
|
||||
int v = (windmap::at(ct) - windmap::at(c)) & 255;
|
||||
if(v > 128) v -= 256;
|
||||
if(v < windmap::NOWINDFROM && v > -windmap::NOWINDFROM)
|
||||
hdiff = hdiff * (1 - v * blizzard_mul / windmap::NOWINDFROM);
|
||||
hdiff = hdiff * (1 - v * 5 / windmap::NOWINDFROM);
|
||||
}
|
||||
#endif
|
||||
|
||||
|
||||
Reference in New Issue
Block a user