Skip to content

Commit

Permalink
Merge pull request #255 from SleepProgger/copy_components_order
Browse files Browse the repository at this point in the history
Copies the component_order in Gameworlds init_entity [Fix #254]
  • Loading branch information
Kovak committed Sep 7, 2017
2 parents a15d96d + 87c660a commit c01f13f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/core/kivent_core/gameworld.pyx
Expand Up @@ -416,7 +416,7 @@ class GameWorld(Widget):
'''
cdef unsigned int entity_id = self.get_entity(zone)
cdef Entity entity = self.entities[entity_id]
entity.load_order = component_order
entity.load_order = list(component_order)
cdef SystemManager system_manager = self.system_manager
entity.system_manager = system_manager
cdef object component_args
Expand Down

0 comments on commit c01f13f

Please sign in to comment.