diff --git a/src/main/java/net/aufdemrand/denizen/objects/dEntity.java b/src/main/java/net/aufdemrand/denizen/objects/dEntity.java index a1b536c80f..d976120df2 100644 --- a/src/main/java/net/aufdemrand/denizen/objects/dEntity.java +++ b/src/main/java/net/aufdemrand/denizen/objects/dEntity.java @@ -1243,7 +1243,7 @@ else if (attribute.startsWith("equipment")) { // @returns dLocation // @description // Returns the location of the block the entity is looking at. - // Optional, specify a maximum range to find the location from. + // Optionally, specify a maximum range to find the location from. // --> if (attribute.startsWith("location.cursor_on")) { int range = attribute.getIntContext(2); diff --git a/src/main/java/net/aufdemrand/denizen/scripts/commands/CommandRegistry.java b/src/main/java/net/aufdemrand/denizen/scripts/commands/CommandRegistry.java index 20af2fe6e5..d0e75f9fe9 100644 --- a/src/main/java/net/aufdemrand/denizen/scripts/commands/CommandRegistry.java +++ b/src/main/java/net/aufdemrand/denizen/scripts/commands/CommandRegistry.java @@ -552,7 +552,7 @@ public void registerCoreMembers() { // @Description // Todo // @Tags - // + // // @Usage // Todo // --> @@ -565,14 +565,18 @@ public void registerCoreMembers() { // @Syntax create [] [] () // @Required 1 // @Stable experimental - // @Short Creates a new NPC, and alternatively spawns it at a location. - // @Author Todo + // @Short Creates a new NPC, and optionally spawns it at a location. + // @Author aufdemrand // @Description // Todo // @Tags // // @Usage - // Todo + // Use to create a despawned NPC for later usage. + // - create player Bob + // @Usage + // Use to create an NPC and spawn it immediately. + // - create spider Joe // --> registerCoreMember(CreateCommand.class, "CREATE", "create [] [] ()", 1); @@ -1208,7 +1212,7 @@ public void registerCoreMembers() { // @Description // Todo // @Tags - // Todo + // ].to[]> // @Usage // Todo // --> @@ -1226,9 +1230,9 @@ public void registerCoreMembers() { // @Description // Todo // @Tags - // - // - // + // + // + // // @Usage // Todo // --> @@ -1674,7 +1678,9 @@ public void registerCoreMembers() { // @Description // Todo // @Tags - // + // + // + // // @Usage // Todo // --> @@ -2351,7 +2357,10 @@ public void registerCoreMembers() { // @Description // Todo // @Tags - // + // + // + // + // // @Usage // Todo // --> diff --git a/src/main/java/net/aufdemrand/denizen/scripts/containers/core/WorldScriptHelper.java b/src/main/java/net/aufdemrand/denizen/scripts/containers/core/WorldScriptHelper.java index b19e19c417..880c7d22c9 100644 --- a/src/main/java/net/aufdemrand/denizen/scripts/containers/core/WorldScriptHelper.java +++ b/src/main/java/net/aufdemrand/denizen/scripts/containers/core/WorldScriptHelper.java @@ -2723,7 +2723,7 @@ public void enchantItemEvent(EnchantItemEvent event) { // returns an Element with the name of the slot type that was clicked. // returns an Element with the number of the slot that was clicked. // returns true if 'shift' was used while clicking. - // returns the inventory_action. <@link language Inventory Action> + // returns the inventory_action. See <@link language Inventory Actions>. // // @Determine // "CANCELLED" to stop the player from clicking.