1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-11-24 05:17:17 +00:00

set landparam = 1 on recall in Brownian just in case

This commit is contained in:
Zeno Rogue 2019-10-05 17:00:10 +02:00
parent 0e759f9da9
commit b8fd4e1199

View File

@ -3463,6 +3463,9 @@ EX bool makeEmpty(cell *c) {
else else
c->wall = waNone; c->wall = waNone;
if(c->land == laBrownian && c->wall == waNone && c->landparam == 0)
c->landparam = 1;
if(c->item != itCompass) if(c->item != itCompass)
c->item = itNone; c->item = itNone;