script:
#______________________________________________________________________________#
#_ *Bug fix _ Frame Stop v1.3 _ by FelipeFalcon _______________________________#
#______________________________________________________________________________#
class Game_CharacterBase
alias update_stop_fix update_stop
def update_stop
update_stop_fix
if !passable?(@x, @y, @direction)
@pattern = @original_pattern if @step_anime == false and !moving? unless @move_route_forcing
end
end
end