From 050dc6915bfe71547129e5f253543c25a4b45e07 Mon Sep 17 00:00:00 2001 From: raylu Date: Fri, 25 Oct 2013 01:51:28 -0700 Subject: handle golden pod --- web/static/js/kill.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'web') diff --git a/web/static/js/kill.js b/web/static/js/kill.js index 57d33fc..5fe2173 100644 --- a/web/static/js/kill.js +++ b/web/static/js/kill.js @@ -142,6 +142,10 @@ window.addEvent('domready', function() { item_name += ' (copy)'; cost /= 1000; } + if (item['type_id'] == 33329 && item['flag'] == 89) // Genolution 'Auroral' AU-79 in implant slot + cost = 'n/a'; + else + cost = ykill.format_isk(cost); table.grab(new Element('tr').adopt( new Element('td').grab( new Element('img', { @@ -151,7 +155,7 @@ window.addEvent('domready', function() { ), new Element('td', {'html': item_name}), new Element('td', {'html': count, 'class': item_class}), - new Element('td', {'html': ykill.format_isk(cost)}) + new Element('td', {'html': cost}) )); }); }); -- cgit v1.2.3