sacred-ritual-academy/Scripts/_.48.rb
2025-03-18 19:45:34 -05:00

11 lines
No EOL
387 B
Ruby

class Game_Player < Game_Character
attr_accessor :nonmovable
#--------------------------------------------------------------------------
# ● 移動可能判定
#--------------------------------------------------------------------------
alias takononmovablemovable movable?
def movable?
return false if @nonmovable
return takononmovablemovable
end
end