- Jul 20, 2020
- 61
- 89
- 109
BolHeX I think the shoot cost issue is with shoot.cost or with estimated cost, and it is not solved in the hotfix. I changed line 425 in screen_shoot_studio_menu.rpy from:
to
and that fixed it. And I don't know what you changed in the hotfix, but for me these files in shoot_studio did not recompile, and the error occured even after deleting the rpyc files and forcing the recompile. The only thing I could find regarding setting a base "cost" would be the shoot_payment that is set with
Python:
total_cost = int(shoot.cost * perm_shoot_cost_multiplier + estimated_cost * perm_shoot_cost_multiplier)
Python:
total_cost = int(int(shoot.cost) * perm_shoot_cost_multiplier + int(estimated_cost) * perm_shoot_cost_multiplier)
shoot_payment = max(min(shoot_payment, 500), 100), but once again that is not the issue I think.