class Game_Player < Game_Character
  #--------------------------------------------------------------------------
  # ● 移動可能判定
  #--------------------------------------------------------------------------
  alias tako123b4movable? movable?
  def movable?
    return false if move_auto.move_id > 0
    tako123b4movable? 
  end
end  