Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(2 edits)

The problem is that you put everything inside the _() function. So you need to move the first ')'

define sa = Character(_('Sasha', callback = name_callback, cb_name = "Sasha"), color="#efe49c")

It should be:

define sa = Character(_('Sasha'), callback = name_callback, cb_name = "Sasha", color="#efe49c")