Stopped U-turn switching if the battle is over, ensured animation spritesheet file extensions are removed from animation data, added Debug function to reload system cache, Pokémon debug menu now shows the Pokémon's status problem, changed mkxp.json to fix uncommon rendering problems

This commit is contained in:
Maruno17
2021-07-10 19:23:56 +01:00
parent 16a11d314f
commit 4b98850c3a
5 changed files with 24 additions and 8 deletions

View File

@@ -1153,3 +1153,14 @@ DebugMenuCommands.register("invalidtiles", {
pbDebugFixInvalidTiles
}
})
DebugMenuCommands.register("reloadsystemcache", {
"parent" => "othermenu",
"name" => _INTL("Reload System Cache"),
"description" => _INTL("Refreshes the system's file cache. Use if you change a file while playing."),
"always_show" => true,
"effect" => proc {
System.reload_cache
pbMessage(_INTL("Done."))
}
})