Skip to content

Commit

Permalink
Update src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java
Browse files Browse the repository at this point in the history
Co-authored-by: Moderocky <admin@moderocky.com>
  • Loading branch information
TheLimeGlass and Moderocky authored Jan 22, 2025
1 parent fdd5f5f commit 3113ffd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/main/java/ch/njol/skript/sections/EffSecOpenInventory.java
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 3113ffd

Please sign in to comment.