forked from Upstream/mmocore
Removed debugging message.
This commit is contained in:
parent
ebed0d3983
commit
4d8df79dc2
@ -45,7 +45,6 @@ public class SkillTreeViewer extends EditableInventory {
|
||||
for (PathStatus status : PathStatus.values())
|
||||
for (PathType pathType :PathType.values()){
|
||||
if(!config.contains("display.paths." + MMOCoreUtils.ymlName(status.name()) + "." + MMOCoreUtils.ymlName(pathType.name()))){
|
||||
MMOCore.log("display.paths." + MMOCoreUtils.ymlName(status.name()) + "." + MMOCoreUtils.ymlName(pathType.name()));
|
||||
MMOCore.log("Missing path type: " + MMOCoreUtils.ymlName(pathType.name()) + " for status: " + MMOCoreUtils.ymlName(status.name()));
|
||||
continue;
|
||||
}
|
||||
|
@ -66,7 +66,6 @@ public class BoundSkillInfo implements Closable {
|
||||
|
||||
// Unregister skill if passive
|
||||
if (isPassive()) {
|
||||
Bukkit.broadcastMessage("Unregistered passive skill " + classSkill.getSkill().getHandler().getId());
|
||||
registered.unregister(playerData.getMMOPlayerData());
|
||||
}
|
||||
|
||||
|
@ -83,7 +83,6 @@ public abstract class SkillTree extends PostLoadObject implements RegisteredObje
|
||||
}
|
||||
for (String from : config.getConfigurationSection("nodes").getKeys(false)) {
|
||||
ConfigurationSection section = config.getConfigurationSection("nodes." + from);
|
||||
MMOCore.log("skilltree:" + id + " " + (section.contains("paths")));
|
||||
if (section.contains("paths")) {
|
||||
for (String to : section.getConfigurationSection("paths").getKeys(false)) {
|
||||
SkillTreeNode node1 = nodes.get(to);
|
||||
|
Loading…
Reference in New Issue
Block a user