Map fixes

This commit is contained in:
infinitefusion
2023-11-13 11:50:57 -05:00
parent d3662c3f10
commit 91153181c3
12 changed files with 8 additions and 2 deletions

View File

@@ -584,7 +584,13 @@ def getMtMoonDirection()
143, #Route 23
167, #Crimson city
]
maps_west = []
maps_west = [
106, #route 4
1, #cerulean
495, #route 9
351, #route 9
10 #cerulean cape
]
return 2 if maps_south.include?($game_map.map_id)
return 4 if maps_west.include?($game_map.map_id)
return 6 if maps_east.include?($game_map.map_id)

View File

@@ -2,7 +2,7 @@
EXPORT_EXCEPT_MAP_IDS= [768,722,723,724,720]
def exportAllMaps
for id in 810..815
for id in 1..820
begin
MapExporter.export(id, [:Events]) if !EXPORT_EXCEPT_MAP_IDS.include?(id)
rescue