ItsDeltin / Overwatch-Script-To-Workshop

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

Poor implementation of order of operations #204

Closed Protowalker closed 3 years ago

Protowalker commented 3 years ago

23/5 * width - 1 generates into 23 / (5 * width) - 1 when it should be (23/5)*width - 1