From a76018ff03f38fc29ca7d74478b2ce60d32c7640 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 4 Jan 2026 01:51:27 -0500 Subject: [PATCH] do 2x pumpkin patches instead of wheat --- f2.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/f2.py b/f2.py index 74e13f3..cbb7b78 100644 --- a/f2.py +++ b/f2.py @@ -150,5 +150,9 @@ while True: move_to(0, worldSize / 2) plant_alternating(worldSize / 2, worldSize / 2, [ Entities.Tree, Entities.Bush ]) + move_to(worldSize / 2, worldSize / 2) - plant_grid(worldSize / 2, worldSize / 2, [ Entities.Grass ], 0.00, False) \ No newline at end of file + 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) \ No newline at end of file