From 15a21821dd8ed339baf7807581f0a7b584113809 Mon Sep 17 00:00:00 2001 From: MorphanOne Date: Mon, 26 Aug 2013 18:05:58 -0400 Subject: [PATCH] Fix some meta --- .../aufdemrand/denizen/objects/dInventory.java | 16 ++++++++-------- .../containers/core/WorldScriptHelper.java | 8 ++++---- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/java/net/aufdemrand/denizen/objects/dInventory.java b/src/main/java/net/aufdemrand/denizen/objects/dInventory.java index 80b239aaec..cdbc75aeda 100644 --- a/src/main/java/net/aufdemrand/denizen/objects/dInventory.java +++ b/src/main/java/net/aufdemrand/denizen/objects/dInventory.java @@ -670,7 +670,7 @@ public String getAttribute(Attribute attribute) { if (attribute == null) return null; // <--[tag] - // @attribute ].qty[<#>]> + // @attribute ].qty[<#>]> // @returns Element(Number) // @description // Check if the inventory contains a certain quantity (1 by default) of an item @@ -695,7 +695,7 @@ public String getAttribute(Attribute attribute) { } // <--[tag] - // @attribute + // @attribute // @returns dLocation // @description // Returns the location of this inventory's holder. @@ -707,7 +707,7 @@ public String getAttribute(Attribute attribute) { } // <--[tag] - // @attribute ]> + // @attribute ]> // @returns Element(Number) // @description // Returns the combined quantity of itemstacks that match an item if @@ -724,7 +724,7 @@ public String getAttribute(Attribute attribute) { .getAttribute(attribute.fulfill(1)); // <--[tag] - // @attribute + // @attribute // @returns Element(Number) // @description // Return the number of slots in the inventory @@ -734,7 +734,7 @@ public String getAttribute(Attribute attribute) { .getAttribute(attribute.fulfill(1)); // <--[tag] - // @attribute + // @attribute // @returns Element(Number) // @description // Returns the number of itemstacks that match an item if one is @@ -750,7 +750,7 @@ public String getAttribute(Attribute attribute) { .getAttribute(attribute.fulfill(1)); // <--[tag] - // @attribute + // @attribute // @returns Element // @description // Returns the type of the inventory (e.g. "PLAYER", "CRAFTING", "HORSE") @@ -760,7 +760,7 @@ public String getAttribute(Attribute attribute) { .getAttribute(attribute.fulfill(1)); // <--[tag] - // @attribute + // @attribute // @returns dInventory(Equipment) // @description // Returns the equipment of an inventory. If the inventory has no @@ -795,7 +795,7 @@ else if (getInventory() instanceof HorseInventory) { } // <--[tag] - // @attribute + // @attribute // @returns dList(dItem) // @description // Returns a list of all items in the inventory. 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 66d070923c..646718f419 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 @@ -284,13 +284,13 @@ public void blockBurn(BlockBurnEvent event) { // block ignites // ignites // - // @Triggers when a block is destroyed by fire. + // @Triggers when a block is set on fire. // @Context - // will return the location the block was burned at. - // will return the material of the block that was burned. + // will return the location the block was set on fire at. + // will return the material of the block that was set on fire. // // @Determine - // CANCELLED to stop the block from being destroyed. + // CANCELLED to stop the block from being ignited. // // --> @EventHandler