forked from Upstream/mmocore
Removed debug messages
This commit is contained in:
parent
1d1d28958f
commit
10cfc48c9a
@ -1069,11 +1069,7 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
|
||||
.stream()
|
||||
.filter(skillInfo->skillInfo.getClassSkill().getSkill().getHandler().getId().equals(skill))
|
||||
.forEach(BoundSkillInfo::refresh);
|
||||
//TODO Remove test:
|
||||
Bukkit.broadcastMessage("match"+boundSkills.values()
|
||||
.stream()
|
||||
.filter(skillInfo->skillInfo.getClassSkill().getSkill().getHandler().getId().equals(skill)).toList().size());
|
||||
}
|
||||
}
|
||||
|
||||
@Deprecated
|
||||
public boolean hasSkillUnlocked(RegisteredSkill skill) {
|
||||
@ -1140,7 +1136,6 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
|
||||
}
|
||||
|
||||
public boolean hasSkillBound(int slot) {
|
||||
Bukkit.broadcastMessage("slot:"+slot+" "+boundSkills.containsKey(slot));
|
||||
return boundSkills.containsKey(slot);
|
||||
}
|
||||
|
||||
|
@ -428,7 +428,6 @@ public class SkillList extends EditableInventory {
|
||||
|
||||
player.playSound(player.getLocation(), Sound.ENTITY_EXPERIENCE_ORB_PICKUP, 1, 2);
|
||||
playerData.bindSkill(index, selected);
|
||||
Bukkit.broadcastMessage("SKILL BOUND: "+index);
|
||||
open();
|
||||
return;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user