Cubemaze fix

Cubemaze crashed on startup for me with an AssertionError. I fixed it by changing the following line in source/model/cameraman.py:

        if item.position != self.last_position:

to

        if self.last_position is None or item.position != self.last_position:

(log in to comment)

Comments

There's a fix posted in their diary as well.
Thanks for the report gcweing! Sorry it gave you trouble. I failed to re-test under Python26 before I uploaded towards midnight, and was AKF the next day. :-(