1
mirror of https://github.com/CarmJos/MineConfiguration.git synced 2026-06-04 13:55:03 +08:00

fix(debug): 移除多余的debug消息。

This commit is contained in:
2024-01-09 18:10:08 +08:00
parent 1cebe8daca
commit 7ecfff5bc4
5 changed files with 5 additions and 9 deletions
@@ -44,11 +44,7 @@ public class SoundNotify extends NotifyType<SoundConfig> {
@Override
public void execute(@NotNull Player player, @Nullable SoundConfig meta, @NotNull Map<String, Object> placeholders) {
System.out.println("SoundNotify.execute");
if (meta != null) {
System.out.println("SoundNotify.play");
meta.playTo(player);
}
if (meta != null) meta.playTo(player);
}
}