From 3113ffd5b5cb3c79ab189fa52c7eb0bb427bc772 Mon Sep 17 00:00:00 2001 From: LimeGlass <16087552+TheLimeGlass@users.noreply.github.com> Date: Wed, 22 Jan 2025 13:10:48 -0700 Subject: [PATCH] Update src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java Co-authored-by: Moderocky --- .../ch/njol/skript/sections/EffSecOpenInventory.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java b/src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java index a533d7e27bd..ffbb50f2dae 100644 --- a/src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java +++ b/src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java @@ -56,16 +56,16 @@ private static enum OpenableInventorySyntax { ANVIL("anvil"), CARTOGRAPHY("cartography [table]", Skript.methodExists(HumanEntity.class, "openCartographyTable", Location.class, boolean.class), - "Opening a cartography table inventory requires PaperSpigot."), + "Opening a cartography table inventory requires Paper."), ENCHANTING("enchant(ment|ing) [table]", new Version(1, 14)), GRINDSTONE("grindstone", Skript.methodExists(HumanEntity.class, "openGrindstone", Location.class, boolean.class), - "Opening a grindstone inventory requires PaperSpigot."), + "Opening a grindstone inventory requires Paper."), LOOM("loom", Skript.methodExists(HumanEntity.class, "openLoom", Location.class, boolean.class), - "Opening a loom inventory requires PaperSpigot."), + "Opening a loom inventory requires Paper."), SMITHING("smithing [table]", Skript.methodExists(HumanEntity.class, "openSmithingTable", Location.class, boolean.class), - "Opening a smithing table inventory requires PaperSpigot."), + "Opening a smithing table inventory requires Paper."), STONECUTTER("stone[ ]cutter", Skript.methodExists(HumanEntity.class, "openSmithingTable", Location.class, boolean.class), - "Opening a stone cutter inventory requires PaperSpigot."), + "Opening a stone cutter inventory requires Paper."), WORKBENCH("(crafting [table]|workbench)"); private @Nullable String methodError;