diff -bur -X - CorruptedAcademy-0.2-pc/game/scripts/locations/pta_meeting/discussion/label_pta_discussion_options.rpy CorruptedAcademy/game/scripts/locations/pta_meeting/discussion/label_pta_discussion_options.rpy
--- CorruptedAcademy-0.2-pc/game/scripts/locations/pta_meeting/discussion/label_pta_discussion_options.rpy 2024-05-27 08:42:22.000000000 -0400
+++ CorruptedAcademy/game/scripts/locations/pta_meeting/discussion/label_pta_discussion_options.rpy 2024-06-18 17:40:12.847429800 -0400
@@ -34,7 +34,7 @@
$ pta_president_modifier = academy.pta_president.people_skill - 1
$ random_chance = renrandom.random()
- $ speech_success = random_chance + (player.reputation/100) + pta_president_modifier
+ $ speech_success = random_chance - (player.reputation/100) - pta_president_modifier
if speech_success >= 0.85:
$ player.modify_reputation(-2)
$ academy.modify_prestige(-2)
diff -bur -X - CorruptedAcademy-0.2-pc/game/scripts/locations/shoot_studio/label_start_shoot.rpy CorruptedAcademy/game/scripts/locations/shoot_studio/label_start_shoot.rpy
--- CorruptedAcademy-0.2-pc/game/scripts/locations/shoot_studio/label_start_shoot.rpy 2024-06-12 21:18:48.000000000 -0400
+++ CorruptedAcademy/game/scripts/locations/shoot_studio/label_start_shoot.rpy 2024-06-19 00:03:28.829857200 -0400
@@ -98,7 +98,7 @@
$ accept_chance = linear_conversion(average_participant_willingness, 0, 100, min_accept_chance, max_accept_chance)
$ random_chance = renrandom.random()
- if random_chance <= accept_chance:
+ if random_chance >= accept_chance:
show phone
if participant_count > 1:
least_willing_participant.character "You might convince the others but I can't do this."
@@ -157,7 +157,7 @@
$ accept_chance = linear_conversion(average_participant_willingness, 0, 100, min_accept_chance, max_accept_chance)
$ random_chance = renrandom.random()
- if random_chance <= accept_chance:
+ if random_chance >= accept_chance:
show phone
if participant_count > 1:
random_mother.character "You might convince the others but I can't do this."