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 12, 2013
1 parent 7393e7e commit f2ae03b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/main/java/net/aufdemrand/denizen/objects/dLocation.java
Expand Up @@ -729,7 +729,7 @@ else return new Element(String.valueOf(this.distance(toLocation)))
}

// <--
// <l@location.facing[<entity>]> -> Element(Boolean)
// <l@location.facing[<value>]> -> Element(Boolean)
// Returns true if the location's yaw is facing another
// entity or location. Otherwise, returns false.
// -->
Expand All @@ -743,7 +743,7 @@ else return new Element(String.valueOf(this.distance(toLocation)))
int attributePos = 1;

// <--
// <location.facing[<entity>].degrees[X]> -> Element(Boolean)
// <location.facing[<value>].degrees[X]> -> Element(Boolean)
// Returns true if the location's yaw is facing another
// entity or location, within a specified degree range.
// Otherwise, returns false.
Expand Down Expand Up @@ -885,8 +885,8 @@ else if (dEntity.matches(attribute.getContext(1))) {
}

// <--
// <l@location.highest_y> -> dLocation
// Returns the location of the block at x,z with the highest y.
// <l@location.highest> -> dLocation
// Returns the location of the highest at x,z that isn't air.
// -->
if (attribute.startsWith("highest")) {
return new dLocation(getWorld().getHighestBlockAt(this).getLocation())
Expand Down

0 comments on commit f2ae03b

Please sign in to comment.