2
0
mirror of https://github.com/AxioDL/metaforce.git synced 2025-12-08 13:44:56 +00:00

Use empty .blend on create; remove MallocNanoZone workaround

This commit is contained in:
2020-04-15 02:13:11 -04:00
parent a22a5e9473
commit 62f5617539
2 changed files with 2 additions and 6 deletions

View File

@@ -475,7 +475,8 @@ try:
if len(cmdargs) >= 4:
bpy.ops.wm.open_mainfile(filepath=cmdargs[3])
else:
bpy.ops.wm.read_homefile()
bpy.ops.wm.read_homefile(use_empty=True)
bpy.context.scene.world = bpy.data.worlds.new('World')
loaded_blend = cmdargs[1]
bpy.context.preferences.filepaths.save_version = 0
if 'FINISHED' in bpy.ops.wm.save_as_mainfile(filepath=cmdargs[1]):