初步修复2.3.0在exagear资源的解包问题

This commit is contained in:
2022-10-16 22:07:48 +08:00
parent 6d7cfc87bd
commit e6a9d1feb1
34 changed files with 1146 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
#!/usr/bin/python3
import os
import sys
file = open(sys.argv[1], "r")
things = file.read().replace(sys.argv[2], sys.argv[3])
file.close()
file = open(sys.argv[1], "w")
file.write(things)
file.close()