Removed script/event text collation from compiler (added a debug function to do that instead), removed system cache reloader from compiler

This commit is contained in:
Maruno17
2023-04-06 17:47:42 +01:00
parent 3d9d31621b
commit 1ddf89c2df
5 changed files with 42 additions and 34 deletions

View File

@@ -1681,9 +1681,9 @@ module Compiler
Console.echo_li(_INTL("Processing {1} maps...", mapData.mapinfos.keys.length))
idx = 0
mapData.mapinfos.keys.sort.each do |id|
echo "." if idx % 20 == 0
echo "." if idx % 100 == 0
idx += 1
Graphics.update if idx % 250 == 0
Graphics.update if idx % 500 == 0
changed = false
map = mapData.getMap(id)
next if !map || !mapData.mapinfos[id]