Skip to content

Commit

Permalink
clay end nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
CalMWolfs committed Dec 11, 2024
1 parent 4f1a5ac commit f7d27a8
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public static EnderNodeHighlighter getInstance()
return INSTANCE;
}


@SubscribeEvent
public void onParticleSpawn(SpawnParticleEvent event) {
if (!isEnabled()) return;
Expand Down Expand Up @@ -89,7 +88,7 @@ protected boolean isValidHighlightSpot(BlockPos key) {
World w = Minecraft.getMinecraft().theWorld;
if (w == null) return false;
Block b = w.getBlockState(key).getBlock();
return b == Blocks.end_stone || b == Blocks.obsidian;
return b == Blocks.end_stone || b == Blocks.obsidian ||b == Blocks.stained_hardened_clay;
}

@Override
Expand Down

0 comments on commit f7d27a8

Please sign in to comment.