Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Strive for Power

Fantasy Slave Management/RPG Erotic Game · By Strive4Power

Reputation of a Halfkin Wolf

A topic by WolfLynd created Aug 18, 2019 Views: 488 Replies: 1
Viewing posts 1 to 2

So I created a halfkin wolf character whih supposedly have the benefit that for all city, I strat with a slightly increased reputation but what i see is that for Wimborn it says that my reputation is 'Great' while for the others it is 'Neutral'. So I'm confused as why is that?

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: