Skip to content

Commit

Permalink
Adjust NPC meta
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmonkey4eva committed Oct 21, 2013
1 parent ff73d1e commit dc8b03e
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions src/main/java/net/aufdemrand/denizen/objects/dNPC.java
Expand Up @@ -313,7 +313,7 @@ public String getAttribute(Attribute attribute) {

// <--[tag]
// @attribute <npc.has_trait[<trait>]>
// @returns Element(boolean)
// @returns Element(Boolean)
// @description
// Returns whether the NPC has a specified trait.
// -->
Expand Down Expand Up @@ -342,7 +342,7 @@ public String getAttribute(Attribute attribute) {

// <--[tag]
// @attribute <npc.has_anchors>
// @returns Element(boolean)
// @returns Element(Boolean)
// @description
// returns whether the NPC has anchors assigned.
// -->
Expand Down Expand Up @@ -411,7 +411,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.id>
// @returns Element(number)
// @returns Element(Number)
// @description
// returns the NPC's ID number.
// -->
Expand All @@ -420,7 +420,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.owner>
// @returns Element
// @returns dPlayer
// @description
// returns the owner of the NPC.
// -->
Expand All @@ -439,7 +439,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.is_spawned>
// @returns Element(boolean)
// @returns Element(Boolean)
// @description
// returns whether the NPC is spawned.
// -->
Expand Down Expand Up @@ -476,7 +476,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.is_navigating>
// @returns Element(boolean)
// @returns Element(Boolean)
// @description
// returns whether the NPC is currently navigating.
// -->
Expand All @@ -485,7 +485,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.speed>
// @returns Element(number)
// @returns Element(Number)
// @description
// returns the current speed of the NPC.
// -->
Expand All @@ -495,7 +495,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.range>
// @returns Element(number)
// @returns Element(Number)
// @description
// returns the maximum pathfinding range.
// -->
Expand All @@ -515,7 +515,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.speed_modifier>
// @returns Element(number)
// @returns Element(Number)
// @description
// returns the NPC movement speed modifier.
// -->
Expand All @@ -525,7 +525,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.base_speed>
// @returns Element(number)
// @returns Element(Number)
// @description
// returns the base navigation speed.
// -->
Expand All @@ -535,7 +535,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.avoid_water>
// @returns Element(boolean)
// @returns Element(Boolean)
// @description
// returns whether the NPC will avoid water.
// -->
Expand All @@ -556,7 +556,7 @@ && getCitizen().getTrait(ConstantsTrait.class).getConstant(attribute.getContext(

// <--[tag]
// @attribute <npc.navigator.is_fighting>
// @returns Element(boolean)
// @returns Element(Boolean)
// @description
// returns whether the NPC is in combat.
// -->
Expand Down

0 comments on commit dc8b03e

Please sign in to comment.