Skip to content

Commit f7d27a8

Browse files
committed
clay end nodes
1 parent 4f1a5ac commit f7d27a8

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/world/EnderNodeHighlighter.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ public static EnderNodeHighlighter getInstance()
4444
return INSTANCE;
4545
}
4646

47-
4847
@SubscribeEvent
4948
public void onParticleSpawn(SpawnParticleEvent event) {
5049
if (!isEnabled()) return;
@@ -89,7 +88,7 @@ protected boolean isValidHighlightSpot(BlockPos key) {
8988
World w = Minecraft.getMinecraft().theWorld;
9089
if (w == null) return false;
9190
Block b = w.getBlockState(key).getBlock();
92-
return b == Blocks.end_stone || b == Blocks.obsidian;
91+
return b == Blocks.end_stone || b == Blocks.obsidian ||b == Blocks.stained_hardened_clay;
9392
}
9493

9594
@Override

0 commit comments

Comments
 (0)