Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

In mainmenu.gd, the check for Halfkin has a bug.
elif player.race.find("Halfkin"):
"Halfkin" starts at index 0 which converts to False as a boolean.  It should be:
elif player.race.find("Halfkin") >= 0: