Pop(0) method bug

The pop(0) method doesn’t remove an element in “Prime Pathing” level, instead it removes last one. Bug also mentioned here.

Specifically, this applies to Python.

This bug exists on every level.

Link to issue on GitHub

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.