Only deliver reasonable clients

master
Geoffrey Frogeye 2016-02-13 14:09:31 +01:00
parent 1c5f23d624
commit f31e6e74c8
1 changed files with 6 additions and 5 deletions

View File

@ -272,11 +272,12 @@ try:
for c in Client.near(Warehouse.get(0).pos):
if d < Drone.len():
pack = c.pack()
for i in pack:
Drone.get(d).addTask('load', Warehouse.get(0), Product.get(i), 1)
for i in pack:
Drone.get(d).addTask('deliver', c, Product.get(i), 1)
d += 1
if len(pack) == len(c.needs):
for i in pack:
Drone.get(d).addTask('load', Warehouse.get(0), Product.get(i), 1)
for i in pack:
Drone.get(d).addTask('deliver', c, Product.get(i), 1)
d += 1
while turn < SIMULATION:
newTurn()