Maintenance for the week of November 17:
• PC/Mac: No maintenance – November 17
• ESO Store and Account System for maintenance – November 17, 6:00AM EST (11:00 UTC) - 4:00PM EST (21:00 UTC)
• Xbox: NA and EU megaservers for maintenance – November 19, 4:00AM EST (9:00 UTC) - 12:00PM EST (17:00 UTC)
[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()