|
@@ -1,6 +1,5 @@
|
1
|
1
|
from synergine.synergy.collection.Configuration import Configuration
|
2
|
2
|
from intelligine.synergy.object.ant.Ant import Ant
|
3
|
|
-from intelligine.cst import ALIVE, COLONY
|
4
|
3
|
from synergine_xyz.cst import POSITION
|
5
|
4
|
|
6
|
5
|
|
|
@@ -20,7 +19,6 @@ class ColonyConfiguration(Configuration):
|
20
|
19
|
ants = []
|
21
|
20
|
for i in range(self._ant_count):
|
22
|
21
|
ant = self._ant_class(collection, context)
|
23
|
|
- context.metas.value.set(COLONY, ant.get_id(), collection.get_id())
|
24
|
22
|
ant.set_position(self._start_position)
|
25
|
23
|
ants.append(ant)
|
26
|
24
|
|