feat(*): Enable multiple drones for pumpkins

This commit is contained in:
Josh Creek
2025-12-23 19:34:14 +00:00
parent 189185a97b
commit 93c6f178eb
2 changed files with 42 additions and 2 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ while True:
run_loop(num_loops, 'hay', hay.harvest_hay_with_multiple_drones)
run_loop(num_loops, 'wood', wood.harvest_wood)
run_loop(num_loops * 20, 'carrots', carrots.harvest_carrots_with_multiple_drones)
run_loop(num_loops, 'pumpkins', pumpkins.harvest_pumpkins)
run_loop(num_loops, 'pumpkins', pumpkins.harvest_pumpkins_with_multiple_drones)
sunflowers.initial_planting_performed = False
run_loop(num_loops * 50, 'sunflowers', harvest_sunflowers_wrapper)
run_loop(1, 'cacti', harvest_cacti_wrapper)