-
Notifications
You must be signed in to change notification settings - Fork 438
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added Hide Non-Starred Mobs Nametags and Hide Terracota Nametags #4
Conversation
Also used version string for the version number
Also updated to latest commit
Hide Abilities in chat (Like Guided Sheep) Hide Blessings in chat Hide Milestone
(For Pumpking Dicer and Melon Dicer)
Removed Hide Blessings and Hide Milestone
also fixed some stuff
@@ -93,7 +93,10 @@ public void onSlotClick(GuiContainerEvent.SlotClickEvent event) { | |||
event.setCanceled(true); | |||
return; | |||
} | |||
if (!extraAttr.hasKey("baseStatBoostPercentage")) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This code won't run if protect starred items is not enabled, is this intended?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, was thinking if I should make it work with highlight, protect starred items or make a new feature, but i feel like its too minor for a new feature and doesnt make sense with highlight
Also removed kill combo hider thanks sychic
if (Skytils.config.hideNonStarredNametags && event.entity instanceof EntityArmorStand && event.entity.hasCustomName()) { | ||
String name = StringUtils.stripControlCodes(event.entity.getCustomNameTag()); | ||
if (!name.startsWith("✯ ") && name.contains("❤")) | ||
if (name.contains("Lurker") || name.contains("Dreadlord") || name.contains("Souleater") || name.contains("Zombie") || name.contains("Skeleton") || name.contains("Skeletor") || name.contains("Sniper") || name.contains("Super Archer") || name.contains("Spider") || name.contains("Fels") || name.contains("Withermancer")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
No description provided.