diff options
-rw-r--r-- | Archipelago/client.gd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Archipelago/client.gd b/Archipelago/client.gd index 1729061..3b29bfb 100644 --- a/Archipelago/client.gd +++ b/Archipelago/client.gd | |||
@@ -219,7 +219,7 @@ func _on_data(): | |||
219 | if _slot_data.has("painting_entrance_to_exit"): | 219 | if _slot_data.has("painting_entrance_to_exit"): |
220 | _paintings_mapping = _slot_data["painting_entrance_to_exit"] | 220 | _paintings_mapping = _slot_data["painting_entrance_to_exit"] |
221 | 221 | ||
222 | _localdata_file = "user://archipelago/%s_%d" % [_seed, _slot] | 222 | _localdata_file = "user://archipelago_data/%s_%d" % [_seed, _slot] |
223 | var ap_file = File.new() | 223 | var ap_file = File.new() |
224 | if ap_file.file_exists(_localdata_file): | 224 | if ap_file.file_exists(_localdata_file): |
225 | ap_file.open(_localdata_file, File.READ) | 225 | ap_file.open(_localdata_file, File.READ) |
@@ -374,7 +374,7 @@ func saveSettings(): | |||
374 | func saveLocaldata(): | 374 | func saveLocaldata(): |
375 | # Save the MW/slot specific settings to disk. | 375 | # Save the MW/slot specific settings to disk. |
376 | var dir = Directory.new() | 376 | var dir = Directory.new() |
377 | var path = "user://archipelago" | 377 | var path = "user://archipelago_data" |
378 | if dir.dir_exists(path): | 378 | if dir.dir_exists(path): |
379 | pass | 379 | pass |
380 | else: | 380 | else: |