Skip to content

Commit 130d16b

Browse files
committed
fix saving dna files if they were opened via bat file
1 parent c4d807b commit 130d16b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

toontown/leveleditor/LevelEditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -331,7 +331,7 @@ def startUp(self, dnaPath = None):
331331
# Load the DNA file passed (normally through an argument)
332332
if dnaPath:
333333
DNASerializer.loadDNAFromFile(dnaPath)
334-
DNASerializer.outputFile = dnaPath
334+
DNASerializer.outputFile = os.path.abspath(dnaPath)
335335

336336
# box selection stuff
337337
self.isSelecting = False

ver

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.8_01
1+
1.1.8_02

0 commit comments

Comments
 (0)