Fix Baby Dragon / Robo not in pets table bug (#360)

This commit is contained in:
MedicOP
2019-01-24 02:38:38 +01:00
committed by Ronan Lana
parent 73fc0b9ef5
commit 5d63f0bd9d

View File

@@ -62,7 +62,7 @@ public class SpawnPetProcessor {
long expiration = chr.getInventory(MapleInventoryType.CASH).getItem(slot).getExpiration();
MapleInventoryManipulator.removeById(c, MapleInventoryType.CASH, petid, (short) 1, false, false);
MapleInventoryManipulator.addById(c, evolveid, (short) 1, null, petId, expiration);
MaplePet.deleteFromDb(chr, petId);
MaplePet.deleteFromDb(chr, petid);
c.announce(MaplePacketCreator.enableActions());
return;
}