Skip to content

Removing elements from arrays #18

@ghost

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?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions