class Game_Followers
def initialize(leader)
@visible = $data_system.opt_followers
@gathering = false
@data = []
@data.push(Game_Follower.new(1, leader))
(2...max_follow_members).each do |index|
@data.push(Game_Follower.new(index, @data[-1]))
end
end
def max_follow_members
return 3
end
end
class Game_Followers
def initialize(leader)
@visible = $data_system.opt_followers
@gathering = false
@data = []
@data.push(Game_Follower.new(1, leader))
(2...max_follow_members).each do |index|
@data.push(Game_Follower.new(index, @data[-1]))
end
end
def max_follow_members
return 3
end
end