Prototype Seven?

EDK releases + Open discussion and chat about EDK.
Post Reply
User avatar
Rounon Dax
Greenhorn
Posts: 21
Joined: Sat Jul 11, 2015 17:15

Prototype Seven?

Post by Rounon Dax »

Hey there,

Just imported a kill mail from a Monitor and it comes up as Prototype Seven on the Killboard.

http://storage1.static.itmages.com/i/18 ... 550c4.jpeg

ESI kill mail link:
https://esi.tech.ccp.is/latest/killmail ... e4a6ddc65/

But should be this one instead of Prototype Seven:
https://esi.tech.ccp.is/latest/universe ... uage=en-us

Type ID in kill board database is correct (45534), but the rest is somehow off ....
http://storage3.static.itmages.com/i/18 ... e2574.jpeg
User avatar
Salvoxia
Developer
Posts: 1598
Joined: Wed Feb 22, 2012 12:11

Re: Prototype Seven?

Post by Salvoxia »

Hi,

yeah, CCP introduced that ship into the database around a year ago, back then it was named "Prototype Seven".
They just renamed it in the latest static data export, which will be included in the next update. So this is just a "cosmetic problem", there's no corrupt data or anything.

I just finished creating the new database update for EDK from CCP's latest static data export. If you like, you can manually apply it to fix, download here.

Or, if you don't feel comfortable with the complete database update, you can run this SQL script to fix the ship name. It will still be treated as a "Command Ship" though, since that was the ship class CCP originally assigned it. For a new "Flag Cruiser" ship class you need the complete database update from above.

Code: Select all

UPDATE kb3_invtypes SET typeName = 'Monitor' where typeID = 45534;

A third option would be to simply delete the kill, delete the type 45534 from your kb3_invtype table, clear your cache (especially the cache/store folder, if you are using file-based object caching), and re-post the kill. EDK will then fetch the "missing" type 45534 from CCP and insert it into the database.

Best Regards,
Salvoxia
User avatar
Rounon Dax
Greenhorn
Posts: 21
Joined: Sat Jul 11, 2015 17:15

Re: Prototype Seven?

Post by Rounon Dax »

Thank you very much for your fas reply, the static import worked great!
Post Reply