aRTy42 / POE-ItemInfo

Item Info Script for Path of Exile
166 stars 224 forks source link

Currency calculation breaks on stacks with >= 1000 items #22

Closed iulianov closed 7 years ago

iulianov commented 7 years ago

The stack size uses spaces as the thousands separator and breaks the currency conversion code. Sorry for not just issuing a pull request but the fix is to change: StackSize := StackSizeParts1 to: StackSize := StrReplace(StackSizeParts1," ") on line 6042 (inside the first Else of ConvertCurrency(ItemName, ItemStats))

aRTy42 commented 7 years ago

Thanks.

I'm currently not doing much for the script, but I will include it when I find the time, along with other open issues.