Skip to content

Commit

Permalink
version up into 1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Draww committed Mar 15, 2019
1 parent 00aff0b commit 69a411c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>me.draww</groupId>
<artifactId>SuperRankup</artifactId>
<version>1.3.0</version>
<version>1.4.0</version>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
Expand Down
3 changes: 2 additions & 1 deletion src/main/java/me/draww/superrup/utils/ItemUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ public static ItemStack deserializeItemStack(ConfigurationSection section, Rank
String name = section.getString("name");
if (rank != null) {
name = name
.replace("%rank%", rank.getId());
.replace("%rank%", rank.getId())
.replace("%rank_group%", rank.getGroup());
}
controlMeta.setDisplayName(Text.colorize(name));
}
Expand Down

0 comments on commit 69a411c

Please sign in to comment.