do 2x pumpkin patches instead of wheat

This commit is contained in:
2026-01-04 01:51:27 -05:00
parent 6a855ca675
commit a76018ff03

6
f2.py
View File

@@ -150,5 +150,9 @@ while True:
move_to(0, worldSize / 2) move_to(0, worldSize / 2)
plant_alternating(worldSize / 2, worldSize / 2, [ Entities.Tree, Entities.Bush ]) plant_alternating(worldSize / 2, worldSize / 2, [ Entities.Tree, Entities.Bush ])
move_to(worldSize / 2, worldSize / 2)
plant_pumpkin(worldSize / 2, worldSize / 2)
move_to(worldSize / 2, worldSize / 2)
while verify_pumpkin(worldSize / 2, worldSize / 2):
move_to(worldSize / 2, worldSize / 2) move_to(worldSize / 2, worldSize / 2)
plant_grid(worldSize / 2, worldSize / 2, [ Entities.Grass ], 0.00, False)