Changeset - r15669:bd44a663abee
[Not reviewed]
master
0 1 0
yexo - 14 years ago 2010-08-03 12:54:19
yexo@openttd.org
(svn r20344) -Feature: add rescan_newgrf console command
1 file changed with 14 insertions and 0 deletions:
0 comments (0 inline, 0 general)
src/console_cmds.cpp
Show inline comments
 
@@ -1163,6 +1163,19 @@ DEF_CONSOLE_CMD(ConRescanAI)
 
}
 
#endif /* ENABLE_AI */
 

	
 
DEF_CONSOLE_CMD(ConRescanNewGRF)
 
{
 
	if (argc == 0) {
 
		IConsoleHelp("Rescan the data dir for NewGRFs. Usage: 'rescan_newgrf'");
 
		return true;
 
	}
 

	
 
	ScanNewGRFFiles();
 
	InvalidateWindowData(WC_GAME_OPTIONS, 0, 1);
 

	
 
	return true;
 
}
 

	
 
DEF_CONSOLE_CMD(ConGetSeed)
 
{
 
	if (argc == 0) {
 
@@ -1744,6 +1757,7 @@ void IConsoleStdLibRegister()
 
	IConsoleCmdRegister("setting_newgame", ConSettingNewgame);
 
	IConsoleCmdRegister("list_settings",ConListSettings);
 
	IConsoleCmdRegister("gamelog",      ConGamelogPrint);
 
	IConsoleCmdRegister("rescan_newgrf", ConRescanNewGRF);
 

	
 
	IConsoleAliasRegister("dir",          "ls");
 
	IConsoleAliasRegister("del",          "rm %+");
0 comments (0 inline, 0 general)