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)