diff options
author | raylu <raylu@gridium.com> | 2013-10-25 01:51:28 -0700 |
---|---|---|
committer | raylu <raylu@gridium.com> | 2013-10-25 01:51:28 -0700 |
commit | 050dc6915bfe71547129e5f253543c25a4b45e07 (patch) | |
tree | db2ec6565fc7d7dbaad7ceeff4286e35410db648 /web | |
parent | 4072a99b40a2782092af9efabefa8f6f79d621a9 (diff) | |
download | ykill-050dc6915bfe71547129e5f253543c25a4b45e07.tar.xz |
handle golden pod
Diffstat (limited to 'web')
-rw-r--r-- | web/static/js/kill.js | 6 |
1 files changed, 5 insertions, 1 deletions
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}) )); }); }); |