Closed Pix3lPirat3 closed 1 week ago
Patches window.deposit throwing an error if "count" arg is undefined, figured this out with WhoTho since you should be able to only specify window.deposit(item.type), as the other args can be "null", however as WhoTho pointed out--
undefined == null but undefined !== null
No let's not use == null, it includes too many cases
Let's use === undefined || === null
Patches window.deposit throwing an error if "count" arg is undefined, figured this out with WhoTho since you should be able to only specify window.deposit(item.type), as the other args can be "null", however as WhoTho pointed out--