Skip to content

Commit

Permalink
Fix some meta
Browse files Browse the repository at this point in the history
  • Loading branch information
Morphan1 committed Aug 26, 2013
1 parent e96822d commit 15a2182
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
16 changes: 8 additions & 8 deletions src/main/java/net/aufdemrand/denizen/objects/dInventory.java
Expand Up @@ -670,7 +670,7 @@ public String getAttribute(Attribute attribute) {
if (attribute == null) return null;

// <--[tag]
// @attribute <i@inventory.contains[<item>].qty[<#>]>
// @attribute <in@inventory.contains[<item>].qty[<#>]>
// @returns Element(Number)
// @description
// Check if the inventory contains a certain quantity (1 by default) of an item
Expand All @@ -695,7 +695,7 @@ public String getAttribute(Attribute attribute) {
}

// <--[tag]
// @attribute <i@inventory.location>
// @attribute <in@inventory.location>
// @returns dLocation
// @description
// Returns the location of this inventory's holder.
Expand All @@ -707,7 +707,7 @@ public String getAttribute(Attribute attribute) {
}

// <--[tag]
// @attribute <i@inventory.qty[<item>]>
// @attribute <in@inventory.qty[<item>]>
// @returns Element(Number)
// @description
// Returns the combined quantity of itemstacks that match an item if
Expand All @@ -724,7 +724,7 @@ public String getAttribute(Attribute attribute) {
.getAttribute(attribute.fulfill(1));

// <--[tag]
// @attribute <i@inventory.size>
// @attribute <in@inventory.size>
// @returns Element(Number)
// @description
// Return the number of slots in the inventory
Expand All @@ -734,7 +734,7 @@ public String getAttribute(Attribute attribute) {
.getAttribute(attribute.fulfill(1));

// <--[tag]
// @attribute <i@inventory.stacks>
// @attribute <in@inventory.stacks>
// @returns Element(Number)
// @description
// Returns the number of itemstacks that match an item if one is
Expand All @@ -750,7 +750,7 @@ public String getAttribute(Attribute attribute) {
.getAttribute(attribute.fulfill(1));

// <--[tag]
// @attribute <i@inventory.type>
// @attribute <in@inventory.type>
// @returns Element
// @description
// Returns the type of the inventory (e.g. "PLAYER", "CRAFTING", "HORSE")
Expand All @@ -760,7 +760,7 @@ public String getAttribute(Attribute attribute) {
.getAttribute(attribute.fulfill(1));

// <--[tag]
// @attribute <i@inventory.equipment>
// @attribute <in@inventory.equipment>
// @returns dInventory(Equipment)
// @description
// Returns the equipment of an inventory. If the inventory has no
Expand Down Expand Up @@ -795,7 +795,7 @@ else if (getInventory() instanceof HorseInventory) {
}

// <--[tag]
// @attribute <i@inventory.list_contents>
// @attribute <in@inventory.list_contents>
// @returns dList(dItem)
// @description
// Returns a list of all items in the inventory.
Expand Down
Expand Up @@ -284,13 +284,13 @@ public void blockBurn(BlockBurnEvent event) {
// block ignites
// <block> ignites
//
// @Triggers when a block is destroyed by fire.
// @Triggers when a block is set on fire.
// @Context
// <context.location> will return the location the block was burned at.
// <context.type> will return the material of the block that was burned.
// <context.location> will return the location the block was set on fire at.
// <context.type> 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
Expand Down

0 comments on commit 15a2182

Please sign in to comment.