Added json simple lib and fixed Verenia's crap

This commit is contained in:
dginovker 2019-06-08 16:57:47 -04:00
parent 702c729d6a
commit fbf3ea0f71
3 changed files with 9 additions and 15 deletions

View file

@ -77,8 +77,6 @@ import org.crandor.net.packet.out.SkillLevel;
import org.crandor.net.packet.out.UpdateSceneGraph;
import org.crandor.plugin.Plugin;
import org.crandor.tools.StringUtils;
import org.crandor.tools.panel.Controller;
import org.crandor.tools.panel.PlayerListPulse;
import java.util.ArrayList;
import java.util.List;
@ -250,8 +248,6 @@ public class Player extends Entity {
*/
private final HunterManager hunterManager = new HunterManager(this);
private final PlayerListPulse playerListPulse = new PlayerListPulse(this);
/**
* The treasure trail manager.
*/
@ -277,8 +273,6 @@ public class Player extends Entity {
*/
private final IronmanManager ironmanManager = new IronmanManager(this);
private final Controller controller = new Controller(this);
/**
* The logout plugins.
*/
@ -1261,15 +1255,6 @@ public class Player extends Entity {
this.skillTasks = skillTasks;
}
public Controller getController() {
return controller;
}
public PlayerListPulse getPlayerListPulse() {
return playerListPulse;
}
@Override
public String toString() {
return "Player [name=" + name + ", getRights()=" + getRights() + "]";