From e2d706cd21c4ded88694d58dc656d88de813a7e8 Mon Sep 17 00:00:00 2001 From: yexo Date: Tue, 3 Aug 2010 12:54:19 +0000 Subject: (svn r20344) -Feature: add rescan_newgrf console command --- src/console_cmds.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src/console_cmds.cpp') diff --git a/src/console_cmds.cpp b/src/console_cmds.cpp index c0cfcdf0b..fd08ab99c 100644 --- a/src/console_cmds.cpp +++ b/src/console_cmds.cpp @@ -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 %+"); -- cgit v1.2.3-54-g00ecf