Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
fullwall committed Jun 2, 2017
1 parent c009be3 commit d01cc4c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@

<groupId>net.citizensnpcs</groupId>
<artifactId>citizensapi</artifactId>
<version>2.0.21-SNAPSHOT</version>
<version>2.0.22-SNAPSHOT</version>
<name>CitizensAPI</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<bukkit.version>1.11-R0.1-SNAPSHOT</bukkit.version>
<bukkit.version>1.12-pre6-SNAPSHOT</bukkit.version>
<powermock.version>1.4.12</powermock.version>
<build.number>Unknown</build.number>
</properties>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/net/citizensnpcs/api/util/Messaging.java
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,9 @@ private static String prettify(String message) {
message = messageColour + message;
} else
messageColour = test.toString();
} else
} else {
message = messageColour + message;
}
}
message = message.replace("[[", Colorizer.parseColors(HIGHLIGHT_COLOUR));
return CHAT_NEWLINE.matcher(message).replaceAll("<n>]]").replace("]]", messageColour);
Expand Down

0 comments on commit d01cc4c

Please sign in to comment.