diff options
Diffstat (limited to 'src/actions/actions.cpp')
-rw-r--r-- | src/actions/actions.cpp | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/actions/actions.cpp b/src/actions/actions.cpp index 73c57985c..ae9a21b76 100644 --- a/src/actions/actions.cpp +++ b/src/actions/actions.cpp @@ -78,6 +78,8 @@ #include "listeners/updatestatuslistener.h" +#include "resources/resourcemanager.h" + #include "resources/map/map.h" #include "utils/gettext.h" @@ -542,4 +544,16 @@ impHandler0(who) return true; } +impHandler0(cleanGraphics) +{ + ResourceManager::getInstance()->clearCache(); + + if (debugChatTab) + { + // TRANSLATORS: clear graphics command message + debugChatTab->chatLog(_("Cache cleaned")); + } + return true; +} + } // namespace Actions |