mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Key benefits of the new mapmerge include: multi-Z support, effective reuse of deleted keys, automatic handling of key overflow, and utilizing a git pre-commit hook to eliminate the need to run batch files manually.
9 lines
236 B
Python
9 lines
236 B
Python
#!/usr/bin/env python3
|
|
import frontend
|
|
import dmm
|
|
|
|
if __name__ == '__main__':
|
|
settings = frontend.read_settings()
|
|
for fname in frontend.process(settings, "convert"):
|
|
dmm.DMM.from_file(fname).to_file(fname, settings.tgm)
|