The pop(0)
method doesn’t remove an element in “Prime Pathing” level, instead it removes last one. Bug also mentioned here.
Alternative:
for item in list:
list.remove(item)
1 Like
I would like to thank you quite a bit for that relatively simple observation. I’d been banging my head into “Queue Manager” for ages, getting really stuck where I was supposed to use the pop
, and just seeing that really made it all click.