diff --git a/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerSpectatesEntityScriptEvent.java b/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerSpectatesEntityScriptEvent.java index d7d5544906..e98019c4ee 100644 --- a/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerSpectatesEntityScriptEvent.java +++ b/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerSpectatesEntityScriptEvent.java @@ -16,7 +16,7 @@ public class PlayerSpectatesEntityScriptEvent extends BukkitScriptEvent implemen // @Events // player spectates // - // @Regex ^on player spectates [^]s+$ + // @Regex ^on player spectates [^\s]+$ // // @Switch in // diff --git a/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerStopsSpectatingScriptEvent.java b/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerStopsSpectatingScriptEvent.java index 97f242aaf3..84f1ec46f9 100644 --- a/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerStopsSpectatingScriptEvent.java +++ b/paper/src/main/java/com/denizenscript/denizen/paper/events/PlayerStopsSpectatingScriptEvent.java @@ -16,7 +16,7 @@ public class PlayerStopsSpectatingScriptEvent extends BukkitScriptEvent implemen // @Events // player stops spectating () // - // @Regex ^on player stops spectating( [\^s]+)?$ + // @Regex ^on player stops spectating( [^\s]+)?$ // // @Switch in // diff --git a/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java b/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java index 96c5bb207f..8ac581aaa7 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java +++ b/plugin/src/main/java/com/denizenscript/denizen/objects/LocationTag.java @@ -1545,8 +1545,7 @@ else if (object.getBlockTypeForTag(attribute) == Material.FLOWER_POT) { // @attribute /]> // @returns ElementTag(Boolean) // @description - // Returns whether the location's yaw is facing another - // entity or location. + // Returns whether the location's yaw is facing another entity or location, within a limit of 45 degrees of yaw. // --> registerTag("facing", (attribute, object) -> { if (attribute.hasContext(1)) { diff --git a/plugin/src/main/java/com/denizenscript/denizen/objects/PlayerTag.java b/plugin/src/main/java/com/denizenscript/denizen/objects/PlayerTag.java index aa224b3d3e..a455ee2651 100644 --- a/plugin/src/main/java/com/denizenscript/denizen/objects/PlayerTag.java +++ b/plugin/src/main/java/com/denizenscript/denizen/objects/PlayerTag.java @@ -1653,6 +1653,7 @@ else if (Depends.permissions != null) { // <--[tag] // @attribute // @returns ItemTag + // @Mechanism PlayerTag.item_on_cursor // @description // Returns the item on the player's cursor, if any. This includes // chest interfaces, inventories, and hotbars, etc. @@ -2540,8 +2541,8 @@ public void adjust(Mechanism mechanism) { // @name item_on_cursor // @input ItemTag // @description - // Sets the item on the player's cursor. This includes - // chest interfaces, inventories, and hotbars, etc. + // Sets the item on the player's cursor. + // This includes chest interfaces, inventories, and hotbars, etc. // @tags // // -->