Skip to content

Commit ecc7f6a

Browse files
committed
Fix crest quantity
1 parent d329261 commit ecc7f6a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/currencies.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -751,7 +751,7 @@ function PermoksAccountManager:CreateCurrencyString(currencyInfo, abbreviateCurr
751751
if currencyInfo.maxQuantity and currencyInfo.maxQuantity > 0 and (currencyInfo.quantity or 0) > currencyInfo.maxQuantity then
752752
-- REFACTOR: move this logic to the crest labelRows to remove redundancy
753753
local id = currencyInfo.currencyType
754-
if id ~= 2914 and id ~= 2915 and id ~= 2916 and id ~= 2917 then
754+
if id ~= 3107 and id ~= 3108 and id ~= 3109 and id ~= 3110 then
755755
currencyInfo.quantity = currencyInfo.quantity / 100
756756
end
757757
end

0 commit comments

Comments
 (0)