You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Event::warp_map_name converts the map constant to a label, e.g. UNION_CAVE_1F to UnionCave1F. However, it doesn't appropriately handle a case that doesn't come up in pokecrystal, when the constant has an underscore between digits. LUSTER_APARTMENT_1_1F should convert to LusterApartment1_1F, not LusterApartment11F.
Event::warp_map_name
converts the map constant to a label, e.g.UNION_CAVE_1F
toUnionCave1F
. However, it doesn't appropriately handle a case that doesn't come up in pokecrystal, when the constant has an underscore between digits.LUSTER_APARTMENT_1_1F
should convert toLusterApartment1_1F
, notLusterApartment11F
.Here's a Python implementation for testing:
The text was updated successfully, but these errors were encountered: