Skip to content

Commit

Permalink
Change plugin startup and shutdown message color to aqua.
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostMiser committed May 17, 2016
1 parent f006982 commit 88bf085
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/frostHealth/FrostHealth.java
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ public void onEnable() {
objective = scoreBoard.registerNewObjective("showhealth", "health");
objective.setDisplaySlot(DisplaySlot.BELOW_NAME);
objective.setDisplayName(ChatColor.BLUE + "❤");
this.getServer().getConsoleSender().sendMessage(ChatColor.BLUE + "[FrostHealth] Plugin enabled.");
this.getServer().getConsoleSender().sendMessage(ChatColor.AQUA + "[FrostHealth] Plugin enabled.");
return;
}

public void onDisable() {
this.getServer().getConsoleSender().sendMessage(ChatColor.BLUE + "[FrostHealth] Plugin disabled.");
this.getServer().getConsoleSender().sendMessage(ChatColor.AQUA + "[FrostHealth] Plugin disabled.");
}


Expand Down

0 comments on commit 88bf085

Please sign in to comment.