Browse Source

update dialogic

Arnaud Vergnet 2 years ago
parent
commit
13554b6a3c
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      addons/dialogic/Other/DialogicResources.gd

+ 1
- 1
addons/dialogic/Other/DialogicResources.gd View File

@@ -219,7 +219,7 @@ static func set_json(path: String, data: Dictionary):
219 219
 	var file = File.new()
220 220
 	var err = file.open(path, File.WRITE)
221 221
 	if err == OK:
222
-		file.store_line(to_json(data))
222
+		file.store_line(JSON.print(data, '\t', true))
223 223
 		file.close()
224 224
 	return err
225 225
 

Loading…
Cancel
Save