8 lines
No EOL
310 B
Ruby
8 lines
No EOL
310 B
Ruby
class Game_Party < Game_Unit
|
|
#--------------------------------------------------------------------------
|
|
# ● バトルメンバーの最大数を取得
|
|
#--------------------------------------------------------------------------
|
|
def max_battle_members
|
|
return [$game_variables[17], 8].max
|
|
end
|
|
end |