initSeqDistributorForCity(currCity);
}
}
private void setUpListenerRelationships() throws GameChangeException {
GameChangeManager gcManager = GameChangeManager.getGameChangeManager();
gcManager.addAfterListener(this, "ActivateNation",
GameChangeManager.Listening.ALL_NATIONS,
"ActivateNation");
gcManager.addAfterListener(this, "DeactivateNation",
GameChangeManager.Listening.ALL_NATIONS,
"DeactivateNation");
gcManager.addAfterListener(this, "ConstructCity",
GameChangeManager.Listening.ALL_NATIONS,
"ConstructCity");
gcManager.addBeforeListener(this, "RemoveCity",
GameChangeManager.Listening.ALL_NATIONS,
"RemoveCity");
gcManager.addAfterListener(this, "SetFieldRuledByCity",
GameChangeManager.Listening.ALL_NATIONS,
"SetFieldRuledByCity");
}