Remove Debug Msg

This commit is contained in:
Ka0rX 2022-10-02 22:30:31 +02:00
parent 37a5179d30
commit f4d6f21b0f
2 changed files with 0 additions and 4 deletions

View File

@ -266,9 +266,6 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
if (skillTree.isNode(coordinates)) {
SkillTreeNode node = skillTree.getNode(coordinates);
if (nodeStates.get(node) == null) {
skillTree.getNodes().forEach(nodee -> Bukkit.broadcastMessage(nodee.getFullId() + " " + nodeStates.get(nodee)));
}
DisplayInfo displayInfo = new DisplayInfo(nodeStates.get(node), node.getSize());
return skillTree.getIcon(displayInfo);
}

View File

@ -45,7 +45,6 @@ public class StatTrigger extends Trigger {
* Not a problem to store twice the stat modifiers are there only remain in the RAM.
*/
public void remove(PlayerData playerData) {
Bukkit.broadcastMessage(totalAmount+"");
totalAmount-=amount;
new StatModifier("trigger", stat, totalAmount, type).register(playerData.getMMOPlayerData());
}