ItsDeltin / Overwatch-Script-To-Workshop

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

[Bug] The decompiler fails on the `+=` operator #267

Closed CactusPuppy closed 3 years ago

CactusPuppy commented 3 years ago

An uncaught exception is thrown when attempting to decompile a rule such as

rule("Increment Global.A")
{
    event
    {
        Ongoing - Global;
        All;
        All;
    }

    actions
    {
        Global.A += 0.010;
    }
}

image