Skip to content

Commit

Permalink
minor meta corrections
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Nov 11, 2019
1 parent 630aee4 commit b823a64
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Expand Up @@ -16,7 +16,7 @@ public class PlayerSpectatesEntityScriptEvent extends BukkitScriptEvent implemen
// @Events
// player spectates <entity>
//
// @Regex ^on player spectates [^]s+$
// @Regex ^on player spectates [^\s]+$
//
// @Switch in <area>
//
Expand Down
Expand Up @@ -16,7 +16,7 @@ public class PlayerStopsSpectatingScriptEvent extends BukkitScriptEvent implemen
// @Events
// player stops spectating (<entity>)
//
// @Regex ^on player stops spectating( [\^s]+)?$
// @Regex ^on player stops spectating( [^\s]+)?$
//
// @Switch in <area>
//
Expand Down
Expand Up @@ -1545,8 +1545,7 @@ else if (object.getBlockTypeForTag(attribute) == Material.FLOWER_POT) {
// @attribute <LocationTag.facing[<entity>/<location>]>
// @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)) {
Expand Down
Expand Up @@ -1653,6 +1653,7 @@ else if (Depends.permissions != null) {
// <--[tag]
// @attribute <PlayerTag.item_on_cursor>
// @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.
Expand Down Expand Up @@ -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
// <PlayerTag.item_on_cursor>
// -->
Expand Down

0 comments on commit b823a64

Please sign in to comment.