Skip to content

Commit

Permalink
identify durations correctly
Browse files Browse the repository at this point in the history
object notation
  • Loading branch information
mcmonkey4eva committed Oct 14, 2014
1 parent bcdf6cf commit fc8e0b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/aufdemrand/denizen/objects/Duration.java
Expand Up @@ -314,7 +314,7 @@ public String getObjectType() {
*/
@Override
public String identify() {
return getTicks() + "t";
return "d@" + getTicks() + "t";
}

@Override
Expand Down

0 comments on commit fc8e0b0

Please sign in to comment.