Improved console messages when compiling didn't happen, egg crack graphics are now found in the same way as egg graphics

This commit is contained in:
Maruno17
2022-09-10 19:38:21 +01:00
parent dcba641a86
commit 662d023ff5
4 changed files with 17 additions and 7 deletions

View File

@@ -778,9 +778,12 @@ module Compiler
end
def compile_all(mustCompile)
return if !mustCompile
if !mustCompile
Console.echo_h1(_INTL("Game did not compile data"))
return
end
FileLineData.clear
Console.echo_h1 _INTL("Starting full compile")
Console.echo_h1 _INTL("Compiling all data")
compile_pbs_files
compile_animations
compile_trainer_events(mustCompile)
@@ -793,7 +796,7 @@ module Compiler
System.reload_cache
Console.echo_done(true)
echoln ""
Console.echo_h2("Successfully fully compiled", text: :green)
Console.echo_h2("Successfully compiled all data", text: :green)
end
def main