From 34697b5341ea350f29e564c7c0ba5901c9702bbe Mon Sep 17 00:00:00 2001 From: Seth Date: Sun, 15 Mar 2026 23:27:46 -0400 Subject: [PATCH] Paper fork: fallback build package when player position unavailable --- mc_aigod_paper.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/mc_aigod_paper.py b/mc_aigod_paper.py index c4720b5..2653f11 100644 --- a/mc_aigod_paper.py +++ b/mc_aigod_paper.py @@ -1301,7 +1301,14 @@ def build_template_commands(player: str, prompt: str, config): pos = get_player_xyz(player, config) if not pos: - return [] + return [ + f"give {player} minecraft:oak_log 256", + f"give {player} minecraft:oak_planks 256", + f"give {player} minecraft:stone_bricks 256", + f"give {player} minecraft:torch 64", + f"give {player} minecraft:oak_door 4", + f"give {player} minecraft:glass 64", + ] x, y, z = pos # Place slightly in front of player position to avoid trapping player.