From b46221bad8ebe543174d3a2a5a35663e022cda30 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 3 Feb 2022 01:07:30 +0100 Subject: [PATCH] Lazurite Figurines no longer appear immediately after using an Orb of Safety --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index 5aac0a28..d94cb9f4 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2588,7 +2588,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) { bool locked = true; forCellEx(c1, c) if(!c1->wall) locked = false; - if(locked) c->item = itEclectic; + if(locked && !safety) c->item = itEclectic; if(c->wall == waNone && hrand_monster(2500) < 30 + items[itEclectic] + yendor::hardness() && !safety) gen_eclectic_monster(c);