Remove debug

This commit is contained in:
fullwall 2023-03-13 02:11:48 +08:00
parent 74a861142b
commit af519a3af4
2 changed files with 2 additions and 2 deletions

1
.gitignore vendored
View File

@ -11,3 +11,4 @@ bin/
dependency-reduced-pom.xml
*.jardesc
*.lnk
*.bbmodel

View File

@ -35,8 +35,7 @@ public class SkinTrait extends Trait {
private void checkPlaceholder(boolean update) {
if (skinName == null)
return;
String filled = ChatColor.stripColor(Placeholders.replace(skinName, null, npc).toLowerCase());
System.out.println(skinName + " " + filled + " " + filledPlaceholder);
String filled = ChatColor.stripColor(Placeholders.replace(skinName, null, npc).toLowerCase());
if (!filled.equalsIgnoreCase(skinName) && !filled.equalsIgnoreCase(filledPlaceholder)) {
filledPlaceholder = filled;
if (update) {