Skip to content

Commit

Permalink
update nicky, fix issue with nickname suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
CaptnSisko committed Mar 31, 2023
1 parent f501b83 commit 97f7699
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified depend/Nicky.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/java/me/sisko/left4chat/sql/AsyncUserUpdate.java
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public AsyncUserUpdate setup(Connection connection, Player p) {
this.p = p;
this.op = Bukkit.getOfflinePlayer((UUID)p.getUniqueId());
this.world = p.getWorld().getName();
this.nick = Colors.strip(p.getDisplayName());
this.nick = Colors.strip(p.getDisplayName()).replaceAll("§r", "");
return this;
}

Expand Down

0 comments on commit 97f7699

Please sign in to comment.