Maintenance for the week of May 18:
· [COMPLETE] NA megaservers for maintenance – May 18, 4:00AM EDT (8:00 UTC) - 9:00AM EDT (13:00 UTC)
· [COMPLETE] EU megaservers for maintenance – May 18, 8:00 UTC (4:00AM EDT) - 13:00 UTC (9:00AM EDT)
The issues on the North American megaservers have been resolved at this time. If you continue to experience difficulties at login, please restart your client. Thank you for your patience!
[BUG] Necromancer Ghostly Embrace Doesn't Generate Corpse On Final Hit If Used To Start Combat
I think this is because of the changes to prevent Necromancer from generating corpses outside of combat.
The ability only generates a corpse if at least one enemy is hit by the final patch, that implies if an enemy is hit you are in combat, so it is always true that this ability will only generate a corpse in combat. So you would just do something like this in the code:
generateCorpse = false
If (player.status == IN_COMBAT || sourceAbility.name == GHOSTLY_EMBRACE)
generateCorpse = true
If (generateCorpse)
spawnCorpse()