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?
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?