示例#1
0
文件: Fort.java 项目: rean1m5/lucera2
  public Fort(int fortId) {
    _fortId = fortId;
    loadFlagPoles();
    loadDoor();
    load();

    _residentialSkills = ResidentialSkillTable.getInstance().getSkills(fortId);
    _function = new FastMap<Integer, FortFunction>();
    if (getOwnerClan() != null) {
      setVisibleFlag(true);
      loadFunctions();
    }
    _spawnManager = new FortManager(this);
  }