diff --git a/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/illegals/items/nbt/CustomNBTFilter.java b/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/illegals/items/nbt/CustomNBTFilter.java index a46bd28f8..bfad81e1f 100755 --- a/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/illegals/items/nbt/CustomNBTFilter.java +++ b/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/illegals/items/nbt/CustomNBTFilter.java @@ -42,7 +42,8 @@ public CustomNBTFilter() { shouldEnable(); Config config = AnarchyExploitFixes.getConfiguration(); config.addComment("illegals.nbt.ban-custom-tags.enable", - "Reverts 32ks / 255s that have been created using nbt tags instead of illegal enchants."); + "Deletes items that have one or more of the configured tags.\n" + + "Bypass permission: " + AEFPermission.BYPASS_ILLEGAL_NBT_CUSTOM.get()); this.delete = config.getBoolean("illegals.nbt.ban-custom-tags.delete-item", true); this.checkStored = config.getBoolean("illegals.nbt.ban-custom-tags.check-stored-items", false); this.illegalTags = new HashSet<>(config.getList("illegals.nbt.ban-custom-tags.tags", List.of("dmg"),