372373374375376377378379380381
@Override public NpcKnownList getKnownList() { if (super.getKnownList() == null || !(super.getKnownList() instanceof NpcKnownList)) { setKnownList(new NpcKnownList(this)); } return (NpcKnownList) super.getKnownList(); }
286287288289290291292293
@Override public NpcKnownList getKnownList() { if(super.getKnownList() == null || !(super.getKnownList() instanceof NpcKnownList)) setKnownList(new NpcKnownList(this)); return (NpcKnownList)super.getKnownList(); }