Added underscore to berry plant charsets, added Debug menu function that will rename these files (including in map data)

This commit is contained in:
Maruno17
2021-11-21 18:45:13 +00:00
parent ea9cacd6b9
commit ddb95a8bb6
4 changed files with 136 additions and 2 deletions

View File

@@ -1191,6 +1191,19 @@ DebugMenuCommands.register("invalidtiles", {
}
})
DebugMenuCommands.register("renamefiles", {
"parent" => "othermenu",
"name" => _INTL("Rename Outdated Files"),
"description" => _INTL("Check for files with outdated names and rename/move them. Can alter map data."),
"always_show" => true,
"effect" => proc {
if pbConfirmMessage(_INTL("Are you sure you want to automatically rename outdated files?"))
FilenameUpdater.rename_files
pbMessage(_INTL("Done."))
end
}
})
DebugMenuCommands.register("reloadsystemcache", {
"parent" => "othermenu",
"name" => _INTL("Reload System Cache"),