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

do not destroy the Round Table in makeEmpty

This commit is contained in:
Zeno Rogue 2021-04-25 11:31:01 +02:00
parent 923f4522c3
commit 3529fa8d84

View File

@ -736,7 +736,7 @@ EX bool makeEmpty(cell *c) {
c->wparam = reptilemax(); c->wparam = reptilemax();
else if(c->wall == waAncientGrave && bounded) else if(c->wall == waAncientGrave && bounded)
; ;
else else if(c->wall != waRoundTable)
c->wall = waNone; c->wall = waNone;
if(c->land == laBrownian && c->wall == waNone && c->landparam == 0) if(c->land == laBrownian && c->wall == waNone && c->landparam == 0)