1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-18 15:00:26 +00:00

fixed fire in Brownian

This commit is contained in:
Zeno Rogue 2019-04-08 14:54:52 +02:00
parent 6b82757016
commit e762fcab2e

View File

@ -1903,6 +1903,7 @@ bool makeflame(cell *c, int timeout, bool checkonly) {
if(!isFire(c)) c->wparam = 0;
c->wall = w;
c->wparam = max(c->wparam, (char) timeout);
if(c->land == laBrownian) c->landparam = 0;
}
return true;
}