init 1090 python: # use the formatting I use for the names to maintain narrative consistency # the old first entry "t1 = t1.replace("Daine", "Namechange")" had to be dropped down the list because it conflicted with "t1 = t1.replace("D-Daine", "N-Namechange")" def replace_text(t1): t1 = t1.replace("Da~ine", "name~change") t1 = t1.replace("Daino", "namechango") t1 = t1.replace("Daaaaiiiine", "naaaamechaaaange") t1 = t1.replace("DAINE", "NAMECHANGE") t1 = t1.replace("DAAAAAAAIIIIINNNNNNE", "NAAAAAAAMECHAAAAANNNNNNGE") t1 = t1.replace("DAAAAAA~IIIIIINE-UH", "NAAAAAAME~CHAAAAAANGE-UH") t1 = t1.replace("DAAAAAAINE", "NAAAAAAMECHANGE") t1 = t1.replace("D-Daine", "N-Namechange") t1 = t1.replace("Daine", "Namechange") return t1 config.replace_text = replace_text