# HG changeset patch # User MMOSimca # Date 1413261116 14400 # Node ID ef2e97c210c64eec8711df2b95e86b6d1d5fa725 # Parent 06b53a3d2b4a51185d7e2360e5256e66801bd53e Remove workaround for Flex mode Valor Points (because they no longer exist). diff -r 06b53a3d2b4a -r ef2e97c210c6 Main.lua --- a/Main.lua Mon Oct 13 23:13:41 2014 -0400 +++ b/Main.lua Tue Oct 14 00:31:56 2014 -0400 @@ -1336,10 +1336,6 @@ local currency_texture = CurrencyLinkToTexture(item_link) if currency_texture and currency_texture ~= "" then Debug("%s: %s X %d", event_name, currency_texture, quantity) - -- Workaround for Patch 5.4.0 bug with Flexible raid Siege of Orgrimmar bosses and Valor Points - if quantity > 1000 and currency_texture == "pvecurrency-valor" then - quantity = math.floor(quantity / 100) - end table.insert(encounter_data[loot_label], ("currency:%d:%s"):format(quantity, currency_texture)) else Debug("%s: Currency texture is nil, from currency link %s", event_name, item_link)