aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/IsSlotProtectedEvent.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/events/IsSlotProtectedEvent.kt')
-rw-r--r--src/main/kotlin/events/IsSlotProtectedEvent.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/events/IsSlotProtectedEvent.kt b/src/main/kotlin/events/IsSlotProtectedEvent.kt
index cd431f7..cd2b676 100644
--- a/src/main/kotlin/events/IsSlotProtectedEvent.kt
+++ b/src/main/kotlin/events/IsSlotProtectedEvent.kt
@@ -37,7 +37,7 @@ data class IsSlotProtectedEvent(
val event = IsSlotProtectedEvent(slot, action, false, itemStackOverride)
publish(event)
if (event.isProtected && !event.silent) {
- MC.player?.sendMessage(Text.translatable("firmament.protectitem").append(event.itemStack.name))
+ MC.sendChat(Text.translatable("firmament.protectitem").append(event.itemStack.name))
CommonSoundEffects.playFailure()
}
return event.isProtected