Closed RetributionEQ closed 1 year ago
Deleting the RC/Apoc versions would indeed fix the return item upgrade on TS combine, you'll have to do an update on character inventory too though for those having them (or they may get their rc/apoc versions deleted as invalid items)
For example, Skinning Knife : 21565 RC Skinning Knife: 721565 Apoc Skinning Knife: 821565 e.g.
UPDATE inventory SET itemid=21565 WHERE itemid=721565 OR itemid=821565;
UPDATE sharedbank SET itemid=21565 WHERE itemid=721565 OR itemid=821565;
UPDATE guild_bank SET itemid=21565 WHERE itemid=721565 OR itemid=821565;
UPDATE character_pet_inventory SET item_id=21565 WHERE item_id=721565 OR item_id=821565;
DELETE FROM items WHERE id = 721565 or id = 821565;
This unfortunately will be followed any time someone nags about it.
Just to confirm, in the example above it would be:
DELETE FROM items WHERE id = 821565 or id = 721565;
not
DELETE FROM items WHERE id = 21565 or id = 721565;
Just to confirm, in the example above it would be:
correct, updated my example to confirm
Using Xackery's suggested updates, all four items have been addressed.
When returning non-consumable tradeskill items (ie. Chisel, Hammer, etc.) players receive RC/Apoc versions of those items as well. Causing them to have to sell them and buy new ones or disenchant them.
What is the cleanest approach to resolve? If we just deleted the item entries for the RC/Apoc versions, would it return nothing or would it know to return the base item?