Tickets view will now show the correct username rather than your username.

This commit is contained in:
Brianna 2019-04-25 14:49:23 -04:00
parent 35e91ff3e2
commit 8c50bca689
1 changed files with 1 additions and 1 deletions

View File

@ -38,7 +38,7 @@ public class GUITicketManager extends AbstractGUI {
this.plugin = plugin;
this.toModerate = toModerate;
init(plugin.getLocale().getMessage(toModerate != null ? "gui.tickets.titlesingle" : "gui.tickets.title", player.getName()), 54);
init(plugin.getLocale().getMessage(toModerate != null ? "gui.tickets.titlesingle" : "gui.tickets.title", toModerate.getName()), 54);
}
@Override