http://www.sendspace.com/file/tvznwy - Here's a WAD with the actor in it.
Code: Select all
Actor LostSoulBug
{
Health 1
Radius 16
Height 56
+SOLID
+SHOOTABLE
States
{
Spawn:
TNT1 A 2
Loop
Death:
TNT1 A 0 A_Explode (200)
Stop
}
}
Edit:
It seems to have something to do with the timing.
Code: Select all
Death:
TNT1 A 0 A_Explode (200)
Stop
No bug occurs if you change the above to what is below.
Death:
TNT1 A 1
TNT1 A 0 A_Explode (200)
Stop