1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 10:49:58 +00:00

fixed warp in weirdhyperbolic (was disabled for some reason)

This commit is contained in:
Zeno Rogue 2018-04-04 15:07:13 +02:00
parent 4ca146549c
commit 6f86059550

View File

@ -1557,7 +1557,7 @@ void giantLandSwitch(cell *c, int d, cell *from) {
if(d == 9 && randomPatternsMode)
setland(c, RANDPAT ? laWarpCoast : laWarpSea);
if(d == 8 && !weirdhyperbolic) {
if(d == 8) {
if(c->land == laWarpCoast) {
if(hrand(1000) < 150 && celldist(c) >= 3 && !pseudohept(c))
c->wall = waSmallTree;