Skip to content

Commit

Permalink
changed copybox string delimiter
Browse files Browse the repository at this point in the history
  • Loading branch information
wrath625 committed Oct 25, 2022
1 parent 5130959 commit b19b242
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/core.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1436,7 +1436,7 @@ function Biddikus:EndBid(player, playerNick, class, amount)
SendChatMessage("[Biddikus] " .. self.bid.item .. " sold to " .. player .. " for " .. string.format("%.2f", amount) .."dkp. Congratulations!", "RAID")
local itemName, itemLink, itemQual = GetItemInfo(Biddikus.item)

self.frame.footer.cp.copybox:SetText(itemName .. "|" .. playerNick .. "|" .. string.format("%.2f", amount))
self.frame.footer.cp.copybox:SetText(itemName .. "$" .. playerNick .. "$" .. string.format("%.2f", amount))
end
else
self.frame.history:AddMessage(self.bid.item .. " is unwanted. So sad..")
Expand Down

0 comments on commit b19b242

Please sign in to comment.