Added support for large events, allowed field move-related event names to have other text in their names

This commit is contained in:
Maruno17
2021-04-03 01:10:27 +01:00
parent af33799cb7
commit afd76503b2
21 changed files with 336 additions and 278 deletions

View File

@@ -21,8 +21,8 @@ def pbWarpToMap
next if !map.passableStrict?(x,y,0,$game_player)
blocked = false
for event in map.events.values
if event.x==x && event.y==y && !event.through
blocked = true if self!=$game_player || event.character_name!=""
if event.at_coordinate?(x, y) && !event.through
blocked = true if event.character_name != ""
end
end
next if blocked