forked from mirror/OpenTTD
(svn r7195) -Feature: [FS#297, optional elrails] New patches/vehicles option 'disable electrified railways'.
(original patch by maedhros, ideas: peter1138, Darkvater, Rubidium, Patrick, Eddi|zuHause, ..)
This commit is contained in:
16
openttd.c
16
openttd.c
@@ -606,6 +606,8 @@ static void MakeNewGameDone(void)
|
||||
_current_player = _local_player;
|
||||
DoCommandP(0, (_patches.autorenew << 15 ) | (_patches.autorenew_months << 16) | 4, _patches.autorenew_money, NULL, CMD_SET_AUTOREPLACE);
|
||||
|
||||
SettingsDisableElrail(_patches.disable_elrails);
|
||||
|
||||
MarkWholeScreenDirty();
|
||||
}
|
||||
|
||||
@@ -1536,5 +1538,19 @@ bool AfterLoadGame(void)
|
||||
ConvertNameArray();
|
||||
}
|
||||
|
||||
/* from version 38 we have optional elrails */
|
||||
if (CheckSavegameVersion(38)) {
|
||||
/* old game - before elrails made optional */
|
||||
if (CheckSavegameVersion(24)) {
|
||||
/* very old game - before elrail was introduced */
|
||||
_patches.disable_elrails = true; // disable elrails
|
||||
} else {
|
||||
/* game with mandatory elrails (r4150+) */
|
||||
_patches.disable_elrails = false; // enable elrails
|
||||
}
|
||||
}
|
||||
/* do the same as when elrails were enabled/disabled manually just now */
|
||||
SettingsDisableElrail(_patches.disable_elrails);
|
||||
|
||||
return true;
|
||||
}
|
||||
|
Reference in New Issue
Block a user