-
Notifications
You must be signed in to change notification settings - Fork 33
Open
Description
If you load an array it gets treated as an object:
"expansion_prices": {
"0": {
"coins": 501,
"cash": 10
},
"1": {
"coins": 2002,
"cash": 15
},
"2": {
"coins": 3000,
"cash": 20
}, etc
instead of
"expansion_prices": [
[
"coins": 501,
"cash": 10
],
[
"coins": 2002,
"cash": 15
],
[
"coins": 3000,
"cash": 20
], etc.
which causes tons of issues when you are working with sensitive languages such as python for example. Any ideas how to fix this?
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels