diff Main.lua @ 356:ef2e97c210c6 WoD

Remove workaround for Flex mode Valor Points (because they no longer exist).
author MMOSimca <MMOSimca@gmail.com>
date Tue, 14 Oct 2014 00:31:56 -0400
parents 06b53a3d2b4a
children f8190e012c92
line wrap: on
line diff
--- 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)