diff options
Diffstat (limited to 'client/Archipelago/client.gd')
| -rw-r--r-- | client/Archipelago/client.gd | 4 |
1 files changed, 2 insertions, 2 deletions
| diff --git a/client/Archipelago/client.gd b/client/Archipelago/client.gd index 5c4bc51..d394b6c 100644 --- a/client/Archipelago/client.gd +++ b/client/Archipelago/client.gd | |||
| @@ -310,11 +310,11 @@ func processDatapackages(): | |||
| 310 | 310 | ||
| 311 | _item_id_to_name[game] = {} | 311 | _item_id_to_name[game] = {} |
| 312 | for item_name in package["item_name_to_id"].keys(): | 312 | for item_name in package["item_name_to_id"].keys(): |
| 313 | _item_id_to_name[game][package["item_name_to_id"][item_name]] = item_name | 313 | _item_id_to_name[game][int(package["item_name_to_id"][item_name])] = item_name |
| 314 | 314 | ||
| 315 | _location_id_to_name[game] = {} | 315 | _location_id_to_name[game] = {} |
| 316 | for location_name in package["location_name_to_id"].keys(): | 316 | for location_name in package["location_name_to_id"].keys(): |
| 317 | _location_id_to_name[game][package["location_name_to_id"][location_name]] = location_name | 317 | _location_id_to_name[game][int(package["location_name_to_id"][location_name])] = location_name |
| 318 | 318 | ||
| 319 | if _datapackages.has("Lingo 2"): | 319 | if _datapackages.has("Lingo 2"): |
| 320 | _item_name_to_id = _datapackages["Lingo 2"]["item_name_to_id"] | 320 | _item_name_to_id = _datapackages["Lingo 2"]["item_name_to_id"] |
