- Jul 18, 2019
- 148
- 1,792
- 206
Will fix, thanks!To ronchonbon (or ShinyBoots1993, if you want to report it to him)
I think the Juggernaut event where this is checked (./events/chapter_one/Juggernaut_attack.rpy:2230):
should be this:Code:if EventScheduler.check("JeanGrey_events_asked_on_date") and not check_approval(JeanGrey, threshold = "platonic") and JeanGreyf.check_personality("siblings") >= 0:
Because this:Code:if EventScheduler.check("JeanGrey_events_asked_on_date") and not JeanGrey.check_trait("platonic") and JeanGrey.check_personality("siblings") >= 0:
will always return True given that platonic threshold is not defined and, therefore, default to 0. And, unless love and trust is in the negative, the check will always say the LI is platonic to you even if she's deep throating your cock. (Though that would be funny. Cyclops: "What are you doing?" Jean: "Deep throating Null's cock and guzzling his cum. You know, platonically.")Code:check_approval(JeanGrey, threshold = "platonic")
If my guess is correct, here are all the other's that are running check_approval on platonic:
Code:./events/chapter_one/Juggernaut_attack.rpy:2230: if EventScheduler.check("JeanGrey_events_asked_on_date") and not check_approval(JeanGrey, threshold = "platonic") and JeanGrey.check_personality("siblings") >= 0: ./events/chapter_one/Sentinel_attack.rpy:797: if EventScheduler.check("LauraKinney_events_first_friend_part_three") and not check_approval(LauraKinney, threshold = "platonic"): ./events/chapter_one/Sentinel_attack.rpy:1499: if EventScheduler.check("JeanGrey_events_asked_on_date") and not check_approval(JeanGrey, threshold = "platonic") and JeanGrey.check_personality("siblings") >= 0: