Can't buy something when you have the exact Units amount for it

This screenshot explains it all.
I wanted to buy just a can, for 5u, and I do have 5u, and it won’t let me do.

3 Likes

Maybe the developers never want us to be broke? XD

2 Likes

Finally someone else discovers this! I believe the devs made an off-by-one error somewhere in their code.

1 Like

The error is probably very simple.

They’re checking to see if your total is greater than the amount you’re buying

“if ownedUnits > cartTotal then”

Instead, they should be checking to see if its greater than or equal to the amount you’re buying

“if ownedUnits => cartTotal then”

1 Like