- Do you have a reproducible way to reliably create the crashed FTL via saving your mod .append files as UTF-8 rather than ANSI?
- Do you run GMM via Python directly, rather than via modman.exe? (Or are you able to and still reproduce the first issue?)
- Are you willing to modify GMM files to help me test a possible fix for that issue?
I can walk anyone who's able to test this for me through the changes one-on-one, if you need help, let me know. The following changes should be all that's needed.
main.py, Line 7, add the following:
Code: Select all
import codecs
Code: Select all
target.write(source.read() + "\n")
Code: Select all
target.write(source.read().lstrip(unicode(codecs.BOM_UTF8, "utf8")) + "\n")