init 999 python: def applyTabooPatch(): for item in ["after_load", "check_ali_gender", "house", "story_prologue"]: config.label_overrides.update({item + "_original": item}) config.label_overrides.update({item: item + "_taboo"}) applyTabooPatch() label after_load_taboo: if renpy.has_label("after_load_original"): call after_load_original from _call_after_load_original_1 call taboo_patch from _call_taboo_patch_1 return label check_ali_gender_taboo: if renpy.has_label("check_ali_gender_original"): call check_ali_gender_original from _call_check_ali_gender_original_1 if type(ali) is str: if ali_female == True: if ali == "Alistar" or ali.strip() == "": $ ali = "Alice" else: if ali == "Alice" or ali.strip() == "": $ ali = "Alistar" return label story_prologue_taboo: call taboo_patch from _call_taboo_patch_2 jump story_prologue_original label house_taboo: call taboo_patch from _call_taboo_patch_3 jump house_original label taboo_patch: $ Landlady = "Mom" $ landlady = "mom" $ landlady1 = "mother" $ Landlord = "Father" $ landlord = "father" $ landlord1 = "dad" $ tenantf = "daugther" $ tenantm = "son" $ tenants = "children" $ Roommatef = "Sister" $ roommatef = "sister" $ roomief = "sis" $ Roomief = "Sis" $ Roommatem = "Brother" $ roommatem = "brother" $ roomiem = "bro" $ Roomiem = "Bro" $ Flatmates = "Siblings" $ flatmates = "siblings" $ flatmate = "sibling" $ household = "family" $ neighborf = "sister" $ neighf = "sis" $ neighborm = "brother" $ neighm = "bro" $ neighborau = "aunt" $ neighborun = "uncle" return