This commit is contained in:
zhangyuheng 2024-02-04 18:09:56 +08:00
parent 49cff4d32d
commit a9f9dd4276
3 changed files with 3 additions and 3 deletions

View File

@ -21,7 +21,7 @@ public class DPlayer {
return re;
}
public DPlayer join() {
public DPlayer onJoin() {
return update(this);
}

View File

@ -11,7 +11,7 @@ public class Notification {
private static final Style w_style = Style.style(TextColor.color(255, 185, 69));
private static final Style e_style = Style.style(TextColor.color(255, 96, 72));
private static final String prefix = "[MiniPlayerTitle] ";
private static final String prefix = "[Dominion] ";
public static void info(Player player, String msg) {
player.sendMessage(Component.text(prefix + msg, i_style));

View File

@ -9,7 +9,7 @@ public class XLogger {
private static final Dominion _plugin = Dominion.instance;
private static final Logger _logger = _plugin.getLogger();
private static final String prefix = "[MiniPlayerTitle] ";
private static final String prefix = "[Dominion] ";
public static void info(Player player, String message) {
Notification.info(player, prefix + "I | " + message);