Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags
(+1)

When you look at a description of yourself this error occurs:

SCRIPT ERROR: showVice: Invalid get index 'vice_known' (on base: 'Dictionary').

          At: res://files/scripts/characters/description.gd:737

SCRIPT ERROR: getslavedescription: Invalid operands 'String' and 'Nil' in operator '+'.

          At: res://files/scripts/characters/description.gd:11

SCRIPT ERROR: _on_selfinspectlooks_pressed: Invalid type in function 'set_bbcode' in base 'RichTextLabel'. Cannot convert argument 1 from Nil to String.

          At: res://files/scripts/Mansion.gd:3631

(+1)

Thanks for the report. It is fixed, but for the meantime it's an easy fix on your end. Go into description.gd, find showVice(), then replace: 

if person.mind.vice_known == false || globals.expansionsettings.vices_luxury_effects == false:

with

if person == globals.player || person.mind.vice_known == false || globals.expansionsettings.vices_luxury_effects == false:

Thanks!