From b93fe4e792c0f47319bc9d420aed32b4ba1e7a68 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 13 Jun 2019 18:17:08 +0200 Subject: [PATCH] fixed the PTM version of Brown Islands --- landgen.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landgen.cpp b/landgen.cpp index c6e9ba32..5fde0982 100644 --- a/landgen.cpp +++ b/landgen.cpp @@ -2519,7 +2519,7 @@ void setdist(cell *c, int d, cell *from) { if(c->land == laClearing && !tactic::on) setland(c, laOvergrown); if(c->land == laWhirlpool && !tactic::on && !yendor::on) setland(c, laOcean); if(c->land == laCamelot && !tactic::on) setland(c, laCrossroads); - if(c->land == laBrownian && !tactic::on && !chaosmode) setland(c, laOcean); + if(c->land == laBrownian && !chaosmode) setland(c, laOcean); if(chaosmode && !c->land && isize(currentlands)) { if(chaosmode == 3) setland(c, currentlands[hrand(isize(currentlands))]);