ImTrYin2BeHiDDen
Active Member
- May 2, 2021
- 591
- 125
- 143
thank you this fixed it.You can fix it by opening "CheatMod.rpy". Go to line 150 and change
toCode:def SchoolAttendanceClassesConditionSetState(state, object): if state == QuestStates.Finished: SchoolAttendanceTask.Record.append(1) elif state == QuestStates.Failed: SchoolAttendanceTask.Record.append(1) ConditionClass.SetState(object, state)
Code:def SchoolAttendanceClassesConditionSetState(state, object, withNotify = True): if state == QuestStates.Finished: SchoolAttendanceTask.Record.append(1) elif state == QuestStates.Failed: SchoolAttendanceTask.Record.append(1) ConditionClass.SetState(object, state, withNotify)