Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1184,7 +1184,7 @@ private static void addBlock(String name, Texture texture) {
addBlock("tall_dry_grass", (name, tag) -> new SpriteBlock(name, Texture.tallDryGrass));
addBlock("dried_ghast", (name, tag) -> new DriedGhast(BlockProvider.facing(tag), BlockProvider.stringToInt(tag.get("Properties").get("hydration"), 0)));

// 1.21.x (2025 Fall Drop)
// 1.21.9 (The Copper Age drop)
for (String s : new String[]{"", "waxed_"}) {
addBlock(s + "lightning_rod", (name, tag) -> new LightningRod(name, Texture.lightningRod, BlockProvider.facing(tag, "up"),
tag.get("Properties").get("powered").stringValue("false").equals("true")));
Expand Down Expand Up @@ -1233,6 +1233,10 @@ private static void addBlock(String name, Texture texture) {
tag.get("Properties").get("copper_golem_pose").stringValue("standing")),
"copper_golem_statue", "waxed_copper_golem_statue", "exposed_copper_golem_statue", "waxed_exposed_copper_golem_statue",
"weathered_copper_golem_statue", "waxed_weathered_copper_golem_statue", "oxidized_copper_golem_statue", "waxed_oxidized_copper_golem_statue");

// 26.1 (2026 Spring Drop)
addBlock("golden_dandelion", (name, tag) -> new SpriteBlock(name, Texture.goldenDandelion));
addBlock("potted_golden_dandelion", (name, tag) -> new FlowerPot(name, FlowerPotModel.Kind.GOLDEN_DANDELION));
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ public enum Kind {
CHERRY_SAPLING,
PALE_OAK_SAPLING,
CLOSED_EYEBLOSSOM,
OPEN_EYEBLOSSOM
OPEN_EYEBLOSSOM,
GOLDEN_DANDELION,
}

private static final Texture flowerpot = Texture.flowerPot;
Expand Down Expand Up @@ -637,6 +638,9 @@ private FlowerPotModel(Kind kind) {
case CLOSED_EYEBLOSSOM:
Arrays.fill(textures, flowerPotTex.length, textures.length, Texture.closedEyeblossom);
break;
case GOLDEN_DANDELION:
Arrays.fill(textures, flowerPotTex.length, textures.length, Texture.goldenDandelion);
break;
}
break;
}
Expand Down
6 changes: 5 additions & 1 deletion chunky/src/java/se/llbit/chunky/resources/Texture.java
Original file line number Diff line number Diff line change
Expand Up @@ -1655,7 +1655,7 @@ public class Texture {
@TexturePath("assets/minecraft/textures/block/dried_ghast_hydration_3_tentacles")
public static final Texture driedGhastHydration3Tentacles = new Texture();

// [1.21.x (2025 Fall Drop)]
// [1.21.9 (The Copper Age drop)]
@TexturePath("assets/minecraft/textures/block/exposed_lightning_rod")
public static final Texture exposedLightningRod = new Texture();
@TexturePath("assets/minecraft/textures/block/oxidized_lightning_rod")
Expand Down Expand Up @@ -1733,6 +1733,10 @@ public class Texture {
@TexturePath("assets/minecraft/textures/entity/copper_golem/oxidized_copper_golem")
public static final Texture copperGolemOxidized = new Texture();

// [26.1 (2026 Spring Drop)]
@TexturePath("assets/minecraft/textures/block/golden_dandelion")
public static final Texture goldenDandelion = new Texture();

/** Banner base texture. */
public static final Texture bannerBase = new Texture();

Expand Down