From 2e58edfdad88968730bbbbc0faff9b57a5f4e0c2 Mon Sep 17 00:00:00 2001 From: Alex 'mcmonkey' Goodwin Date: Fri, 22 May 2020 18:56:43 -0700 Subject: [PATCH] minor meta cleanups --- .../denizen/events/player/PlayerDragsInInvScriptEvent.java | 2 +- .../denizen/objects/properties/item/ItemSkullskin.java | 2 +- .../denizen/scripts/containers/core/CommandScriptContainer.java | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/plugin/src/main/java/com/denizenscript/denizen/events/player/PlayerDragsInInvScriptEvent.java b/plugin/src/main/java/com/denizenscript/denizen/events/player/PlayerDragsInInvScriptEvent.java index 5f655b003b..a4f23dd468 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/events/player/PlayerDragsInInvScriptEvent.java +++ b/plugin/src/main/java/com/denizenscript/denizen/events/player/PlayerDragsInInvScriptEvent.java @@ -25,7 +25,7 @@ public class PlayerDragsInInvScriptEvent extends BukkitScriptEvent implements Li // player drags in inventory // player drags () (in ) // - // @Regex ^on player drags( ^[\s]+)?(in [^\s]+)?( in_area ((notable (cuboid|ellipsoid))|([^\s]+)))?$ + // @Regex ^on player drags( ^[\s]+)?(in [^\s]+)?$ // // @Switch in_area: to only process the event if it occurred within a specified area. // diff --git a/plugin/src/main/java/com/denizenscript/denizen/objects/properties/item/ItemSkullskin.java b/plugin/src/main/java/com/denizenscript/denizen/objects/properties/item/ItemSkullskin.java index 3a18acf019..e5c6cd5bea 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/objects/properties/item/ItemSkullskin.java +++ b/plugin/src/main/java/com/denizenscript/denizen/objects/properties/item/ItemSkullskin.java @@ -152,8 +152,8 @@ public void adjust(Mechanism mechanism) { // Optionally, use the second ElementTag for the skin texture cache. // Optionally, use the third ElementTag for a player name. // @tags + // // - // // // --> if (mechanism.matches("skull_skin")) { diff --git a/plugin/src/main/java/com/denizenscript/denizen/scripts/containers/core/CommandScriptContainer.java b/plugin/src/main/java/com/denizenscript/denizen/scripts/containers/core/CommandScriptContainer.java index 4609d9c27a..f894048b60 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/scripts/containers/core/CommandScriptContainer.java +++ b/plugin/src/main/java/com/denizenscript/denizen/scripts/containers/core/CommandScriptContainer.java @@ -91,7 +91,7 @@ public class CommandScriptContainer extends ScriptContainer { // # Available context: returns whether the server is viewing the help (a player if false). // # | Most command scripts should NOT have this key, but it's available. // allowed help: - // - determine > + // - determine > // // # The procedure-based script that will run when a player uses tab completion to predict words. // # This should return a ListTag of words that the player can tab through, based on the arguments they have already typed.