This commit is contained in:
Andrew6810
2023-03-30 12:32:45 -07:00
parent f3e579cb57
commit d6aaac97af
53 changed files with 2930 additions and 1307 deletions
+1
View File
@@ -61,6 +61,7 @@ local AuctionRecord = {
GetItemBuyout = function(self)
if not self.buyout or self.buyout == 0 then return end
-- Calculate the price per item, always rounded downwards.
return floor(self.buyout / self.count)
end,