From c1a10276e73e87aad8e67eafb62560d6503e3ebb Mon Sep 17 00:00:00 2001 From: Vitek Date: Sat, 16 Aug 2025 10:04:48 +0200 Subject: [PATCH] fix minecraft spawner types --- .../ruins/ancient_aether_tower/objects/spawner_obelisk.tesf | 4 ++-- structures/aether/buildings/ruins/ruin.tesf | 2 +- .../end/dragon-island/vex_spawner/fountain_vex_spawner.tesf | 2 +- .../end/dragon-island/vex_spawner/pillar_vex_spawner.tesf | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/structures/aether/buildings/ruins/ancient_aether_tower/objects/spawner_obelisk.tesf b/structures/aether/buildings/ruins/ancient_aether_tower/objects/spawner_obelisk.tesf index 9f7bbc2..1fdbdf9 100644 --- a/structures/aether/buildings/ruins/ancient_aether_tower/objects/spawner_obelisk.tesf +++ b/structures/aether/buildings/ruins/ancient_aether_tower/objects/spawner_obelisk.tesf @@ -18,8 +18,8 @@ for (num y = 0; y < length; y = y + 1) { block(0, length-1, 0, "minecraft:spawner", false); if (randomInt(5) == 0) { - state(0, length-1, 0, "type=SILVERFISH"); -} else { state(0, length-1, 0, "type=VEX"); } + state(0, length-1, 0, "type=minecraft:SILVERFISH"); +} else { state(0, length-1, 0, "type=minecraft:VEX"); } block(1, length-1, 0, "minecraft:iron_bars[north=true,south= true]", false); diff --git a/structures/aether/buildings/ruins/ruin.tesf b/structures/aether/buildings/ruins/ruin.tesf index 5ea5a08..4ae932b 100644 --- a/structures/aether/buildings/ruins/ruin.tesf +++ b/structures/aether/buildings/ruins/ruin.tesf @@ -38,7 +38,7 @@ for (num y = height; y > yOffset; y = y - 1) { if (x == 0 && z == 0 && randomInt(4) == 0) { block(x,y+1,z,"minecraft:spawner"); - state(x,y+1,z,"type=VEX"); + state(x,y+1,z,"type=minecraft:VEX"); } } } diff --git a/structures/end/dragon-island/vex_spawner/fountain_vex_spawner.tesf b/structures/end/dragon-island/vex_spawner/fountain_vex_spawner.tesf index 349a4fb..5dcd8d8 100644 --- a/structures/end/dragon-island/vex_spawner/fountain_vex_spawner.tesf +++ b/structures/end/dragon-island/vex_spawner/fountain_vex_spawner.tesf @@ -6,7 +6,7 @@ structure(0,yTranslate,0, "vex_spawner_sc", "NONE"); for (num x = -radius; x < radius; x = x + 1) { for (num y = -radius; y < radius; y = y + 1) { for (num z = -radius; z < radius; z = z + 1) { - if (getBlock(x,y+yTranslate,z) == "minecraft:spawner") state(x, y+yTranslate, z,"type=VEX"); + if (getBlock(x,y+yTranslate,z) == "minecraft:spawner") state(x, y+yTranslate, z,"type=minecraft:VEX"); } } } \ No newline at end of file diff --git a/structures/end/dragon-island/vex_spawner/pillar_vex_spawner.tesf b/structures/end/dragon-island/vex_spawner/pillar_vex_spawner.tesf index 86e4eae..574468f 100644 --- a/structures/end/dragon-island/vex_spawner/pillar_vex_spawner.tesf +++ b/structures/end/dragon-island/vex_spawner/pillar_vex_spawner.tesf @@ -6,7 +6,7 @@ structure(0,yTranslate,0, "vex_spawner_sc", "NONE"); for (num x = -radius; x < radius; x = x + 1) { for (num y = -radius; y < radius; y = y + 1) { for (num z = -radius; z < radius; z = z + 1) { - if (getBlock(x,y+yTranslate,z) == "minecraft:spawner") state(x, y+yTranslate, z,"type=VEX"); + if (getBlock(x,y+yTranslate,z) == "minecraft:spawner") state(x, y+yTranslate, z,"type=minecraft:VEX"); if (getBlock(x,y+yTranslate,z) == "minecraft:crying_obsidian") block(x, y+yTranslate, z, "minecraft:obsidian", true); }