From d3da7dddc9013e0c9dca6e5c264e225068952f6c Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Fri, 24 Mar 2023 23:17:16 +0100 Subject: [PATCH] hat:: Jungle --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index 9be346cf..45c4052d 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2226,7 +2226,7 @@ EX void giantLandSwitch(cell *c, int d, cell *from) { int hardchance = items[itRuby] + yendor::hardness(); if(hardchance > 25) hardchance = 25; bool hardivy = hrand(100) < hardchance; - if((hardivy ? buildIvy(c, 1, 9) : buildIvy(c, 0, c->type)) && !peace::on) + if(hat::in() ? buildIvy(c, 0, 4) : (hardivy ? buildIvy(c, 1, 9) : buildIvy(c, 0, c->type)) && !peace::on) c->item = itRuby; } }