ItsDeltin / Overwatch-Script-To-Workshop

Converts scripts to Overwatch workshops.
208 stars 26 forks source link

Spawn Without Mech is not supported by the JSON schema #141

Closed kaitlynia closed 4 years ago

kaitlynia commented 4 years ago
{
    "Heroes": {
        "General": {
            "D.va": {
                "Spawn Without Mech": true
            }
        }
    }
}

should produce

settings
{
    heroes
    {
        General
        {
            D.Va
            {
                Spawn Without Mech: On
            }
        }
    }
}

and the above with Off when "Spawn Without Mech" is false

kaitlynia commented 4 years ago

https://github.com/ItsDeltin/Overwatch-Script-To-Workshop/commit/33dff616c30f440e5c130a75dceb11f627f440cd fixed this issue. Closing