From c50cfcb40911b36e518f4dc3895c74a8bdfc1ad5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 17 Apr 2026 17:47:59 +0200 Subject: [PATCH] no more parrots placed after safety --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index c375a78e..9f11f297 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -1803,7 +1803,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) { } if(d == 7 && c->wall == waSea && hrand_monster(10000) < 20 + items[itPirate] + 2 * yendor::hardness() && !safety) c->monst = moCShark; - if(d == 7 && c->wall == waCTree && hrand_monster(GDIM == 2 ? 5000 : 50000) < 100 + items[itPirate] + yendor::hardness()) + if(d == 7 && c->wall == waCTree && hrand_monster(GDIM == 2 ? 5000 : 50000) < 100 + items[itPirate] + yendor::hardness() && !safety) c->monst = moParrot; ONEMPTY { if(hrand(1500) < 4 && celldistAlt(c) <= -5 && peace::on && !cryst)