This is the default script
Can you see any problems or come up with a scenario where problems would occur?
Code:
#==============================================================================# ** Game_Actors#------------------------------------------------------------------------------# This is a wrapper for an actor array. Instances of this class are referenced# by $game_actors.#==============================================================================class Game_Actors #-------------------------------------------------------------------------- # * Object Initialization #-------------------------------------------------------------------------- def initialize @data = [] end #-------------------------------------------------------------------------- # * Get Actor #-------------------------------------------------------------------------- def [](actor_id) return nil unless $data_actors[actor_id] @data[actor_id] ||= Game_Actor.new(actor_id) endend

