Add XDeath sprites for Arachnotron and Mancubus.

This commit is contained in:
Mari the Deer 2021-06-13 18:49:43 +02:00
commit 8c2979326d
69 changed files with 28 additions and 3 deletions

View file

@ -145,6 +145,10 @@ extend Class SWWMHandler
ExtraGibDeaths.GibThis(e.Thing,"BonerXDeath");
else if ( e.Thing.GetClass() == "Archvile" )
ExtraGibDeaths.GibThis(e.Thing,"VileXDeath");
else if ( e.Thing.GetClass() == "Arachnotron" )
ExtraGibDeaths.GibThis(e.Thing,"ArachXDeath");
else if ( e.Thing.GetClass() == "Fatso" )
ExtraGibDeaths.GibThis(e.Thing,"FatsoXDeath");
if ( profiling ) worldthingdied_ms += MSTime()-curms;
}