From f5fa1263c319a9ba4fa4c66dae693b4b2f694025 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 15 Apr 2021 17:17:20 +0200 Subject: [PATCH] fixed the mercury rivers --- bigstuff.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigstuff.cpp b/bigstuff.cpp index ba3dfbfa..31648815 100644 --- a/bigstuff.cpp +++ b/bigstuff.cpp @@ -1458,7 +1458,7 @@ EX void build_walls(cell *c, cell *from) { if(ctof(c) && c->land == laTerracotta && hrand(I10000) < 200) { int bd = 2 + hrand(2) * 3; - buildBarrier(c, bd, laMirrored); + buildBarrier(c, bd, laTerracotta); return; } }