Skip to content

Commit

Permalink
fix: inverted island check on KuudraFeatures
Browse files Browse the repository at this point in the history
  • Loading branch information
My-Name-Is-Jeff committed Jan 19, 2024
1 parent 409ac4d commit 280df0b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import org.lwjgl.input.Keyboard
object KuudraFeatures {
@SubscribeEvent
fun onCheckRender(event: CheckRenderEntityEvent<*>) {
if (event.entity !is EntityArmorStand || SBInfo.mode == SkyblockIsland.KuudraHollow.mode) return
if (event.entity !is EntityArmorStand || SBInfo.mode != SkyblockIsland.KuudraHollow.mode) return
if (Skytils.config.kuudraHideNonNametags && !Keyboard.isKeyDown(Keyboard.KEY_LMENU)) {
if (!event.entity.isInvisible && !event.entity.hasCustomName()) {
event.isCanceled = true
Expand Down

0 comments on commit 280df0b

Please sign in to comment.