- Dec 12, 2020
- 20
- 13
There's our confirmation of the problem: somewhere, you have a line that hasI get:
profile_girls.append
'BlackCanary'
.append =
, which is replacing that bound function with a string. I would suggest you start by looking for the offending line. If you're using Atom as your editor (or VSCODE, for that matter), CTRL+SHIFT+F is your friend here, as that will let you search EVERY file for a given piece of text.I would be surprised if the erroneous line is literally
$ profile_girls.append = 'BlackCanary'
, but I have seen - and done - dumber things than that before.Note that due to HOW Ren'Py handles stuff in the store (which includes that now-verified-broken object), you may have to either load an earlier save or straight-up start a new game after fixing it.