1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-12-30 03:50:34 +00:00

fixed the mercury rivers

This commit is contained in:
Zeno Rogue 2021-04-15 17:17:20 +02:00
parent 885c377dd5
commit f5fa1263c3

View File

@ -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;
}
}