diff --git a/src/main/java/net/pietru/cookie_utils/mixins/ItemThingMixin.java b/src/main/java/net/pietru/cookie_utils/mixins/ItemThingMixin.java index 652d707..c339986 100644 --- a/src/main/java/net/pietru/cookie_utils/mixins/ItemThingMixin.java +++ b/src/main/java/net/pietru/cookie_utils/mixins/ItemThingMixin.java @@ -33,7 +33,7 @@ public class ItemThingMixin { if (!Permissions.has_user_special_perm(account.getUniqueId()) && !can_edit_block(targetBlockPos, "interact", account.getUniqueId())) { ci.cancel(); - MessagePacket packet = new MessagePacket("[Server] " + (is_not_reloading ? "Sorry, but this area is under protection." : "Sorry but you can't do this action right now. [Config Reload In Progress]")); + MessagePacket packet = new MessagePacket("[Server] " + (is_not_reloading ? "Sorry, you can't use this item here." : "Sorry but you can't do this action right now. [Config Reload In Progress]")); packet.setupAndSend(ServerSingletons.getConnection(player)); } }