king-exit/Scripts/_.44.rb
2024-08-31 14:17:23 -05:00

10 lines
No EOL
433 B
Ruby
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

class Game_Interpreter
#--------------------------------------------------------------------------
# ● 移動ルート強制中の間ウェイト
#スクリプトで wait_for_forcing
#--------------------------------------------------------------------------
def wait_for_forcing
Fiber.yield while $game_player.move_route_forcing
Fiber.yield while $game_map.events.any? {|*,ev| ev.move_route_forcing }
end
end