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)
PyTM30 on 2010/09/01 12:00:
There's a fix posted in their diary as well.