We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f1a5ac commit f7d27a8Copy full SHA for f7d27a8
src/main/java/io/github/moulberry/notenoughupdates/miscfeatures/world/EnderNodeHighlighter.java
@@ -44,7 +44,6 @@ public static EnderNodeHighlighter getInstance()
44
return INSTANCE;
45
}
46
47
-
48
@SubscribeEvent
49
public void onParticleSpawn(SpawnParticleEvent event) {
50
if (!isEnabled()) return;
@@ -89,7 +88,7 @@ protected boolean isValidHighlightSpot(BlockPos key) {
89
88
World w = Minecraft.getMinecraft().theWorld;
90
if (w == null) return false;
91
Block b = w.getBlockState(key).getBlock();
92
- return b == Blocks.end_stone || b == Blocks.obsidian;
+ return b == Blocks.end_stone || b == Blocks.obsidian ||b == Blocks.stained_hardened_clay;
93
94
95
@Override
0 commit comments