mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-15 12:11:45 +00:00
* Fixes mapmerge (#60143) Fixes a condition where mapmerge would fail converting/detecting non tgm maps * Fixes mapmerge Co-authored-by: Letter N <24603524+LetterN@users.noreply.github.com>
8 lines
243 B
Python
8 lines
243 B
Python
#!/usr/bin/env python3
|
|
from . import frontend, dmm
|
|
|
|
if __name__ == '__main__':
|
|
settings = frontend.read_settings()
|
|
for fname in frontend.process(settings, "convert"):
|
|
dmm.DMM.from_file(fname).to_file(fname, tgm = settings.tgm)
|