So, after throwing spaghetti at the wall for a while I may have finally gotten something to stick. Try this edit and tell me if you see the ad multipliers working again >_<Marketing makes it so you get $10 per stat point - this value decreases when you sell serums and increases with marketing "output".
You can do photo shoots with your assigned company model for up to 80% increase but I think this feature is broken in the current version. It used to work in earlier versions.
in Business.rpy, after line 539, add these two lines, matching the existing formatting. You can leave my notes in or not to your preference
Code:
for modifier_tuple in self.sales_multipliers: #added line to fix multipliers? ~dalzomo
serum_value = serum_value * modifier_tuple[1] #added line to fix mutipliers? ~dalzomo
Code:
def get_serum_base_value(self, the_serum, round_value = False): #todo: fix multipliers ~dalzomo
serum_value = 0
serum_value += the_serum.mental_aspect * self.get_aspect_price("mental")
serum_value += the_serum.physical_aspect * self.get_aspect_price("physical")
serum_value += the_serum.sexual_aspect * self.get_aspect_price("sexual")
serum_value += the_serum.medical_aspect * self.get_aspect_price("medical")
for modifier_tuple in self.sales_multipliers: #added line to fix multipliers? ~dalzomo
serum_value = serum_value * modifier_tuple[1] #added line to fix mutipliers? ~dalzomo
if round_value:
serum_value = int(__builtin__.round(serum_value))
return serum_value