Skip to content

Commit

Permalink
more fixes
Browse files Browse the repository at this point in the history
Remove edit to avoid conflicts
  • Loading branch information
Xenmai authored and mcmonkey4eva committed Feb 4, 2019
1 parent 165956e commit 587ea83
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -24,7 +24,7 @@ public static EntityMaxFuseTicks getFrom(dObject object) {
}
}

public static final String[] handledTags = new String[]{
public static final String[] handledTags = new String[] {
"max_fuse_ticks"
};

Expand All @@ -49,7 +49,7 @@ private EntityMaxFuseTicks(dEntity entity) {

@Override
public String getPropertyString() {
return ((Creeper) entity.getBukkitEntity()).getMaxFuseTicks() + "";
return String.valueOf(((Creeper) entity.getBukkitEntity()).getMaxFuseTicks());
}

@Override
Expand Down Expand Up @@ -88,7 +88,7 @@ public void adjust(Mechanism mechanism) {
// @name max_fuse_ticks
// @input Element(Number)
// @description
// Sets the default number of ticks until the creeper explodes when primed (NOT the time remaining if already primed)
// Sets the default number of ticks until the creeper explodes when primed (NOT the time remaining if already primed).
// @tags
// <e@entity.max_fuse_ticks>
// -->
Expand Down

0 comments on commit 587ea83

Please sign in to comment.