Config option "Display On Bosses" effects non-bosses instead
CorruptionEX opened this issue ยท 0 comments
An easy to identify bug. The config option "Display on Bosses" actually ends up controlling the health bars on non-boss mobs.
In HealthBarRenderer.java, line 93 says:
boolean boss = !entity.isNonBoss();
however in processing
, on line 103 says:
if(!NeatConfig.showOnBosses && !boss) break processing;
which is the reverse of whats intended.
line 103 should read:
if(!NeatConfig.showOnBosses && boss) break processing;