(svn r11188) -Codechange: rewrite of the town action related code (remove some of the magic).

-Feature: possibility to disable exclusive rights and giving money. Both by skidd13.
This commit is contained in:
rubidium
2007-09-30 17:38:42 +00:00
parent c952f3d5ef
commit ff14665f6e
10 changed files with 83 additions and 42 deletions

View File

@@ -2014,6 +2014,9 @@ static void TownActionFundBuildings(Town* t)
static void TownActionBuyRights(Town* t)
{
/* Check if it's allowed to by the rights */
if (!_patches.exclusive_rights) return;
t->exclusive_counter = 12;
t->exclusivity = _current_player;