Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Hi, was looking at the demo template. Turning on self voicing when any of the custom preference screens open gave this if it detects mouse currently being used. Didn't happen when using keyboard/roller though.

I'm sorry, but an uncaught exception occurred.
While running game code:
TypeError: 'dict_values' object is not subscriptable
(+1)

Huh, I had not noticed this! You are correct. The solution is to update the visit method in 01_controller_cdsl.rpy:

def visit(self):
    return list(self.displayables.values())

to wrap the return value in a list. I'll add this to the next fix release. Thanks!