Skip to content

Commit 5859a74

Browse files
committed
fix biome check
1 parent ad4d19f commit 5859a74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

terraria.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ def biome_sells_pylon(biome):
255255
nbiome = 0
256256
for n in npcs:
257257
nbiome += If(n.biome == b.ctr, 1, 0)
258-
o.add(nbiome < 4)
258+
o.add(nbiome <= 4)
259259
for n in npcs:
260260
nnear = 0
261261
for n2 in npcs:

0 commit comments

Comments
 (0)