- Mar 26, 2020
- 129
- 64
Ah, so the buy_policy only buys the policy while the purchase_policy also activates it and triggers any related events. And for some reason the purchase_policy code is hidden away the the management_ui-file, that's what I get for not doing a proper search.You actually want to use purchase_policy rather than buy_policy. Two different functions. The issue is that the Vren coded purchase_policy as a global method but is calling it as an instance method...
So change:
attention_floor_increase_2_policy.purchase_policy(ignore_cost=True)
to
purchase_policy(attention_floor_increase_2_policy, ignore_cost=True)
in role_city_rep.rpy lines 69, 77, and 321. (attention_bleed_increase_2_policy on 321)
Guess I'll be manually activating a policy or two through the console next time I start the game to sort out this half-way-mess I've gotten myself into