Tiny Nashgore compat fix.

This commit is contained in:
Mari the Deer 2024-04-18 20:02:26 +02:00
commit 1fb4c27383
7 changed files with 13 additions and 11 deletions

View file

@ -260,10 +260,10 @@ extend Class SWWMHandler
if ( e.Thing.GetClass() == 'Pig' )
e.Thing.SetTag("$FN_PIG"); // missing in gzdoom
// nashgore compat
if ( (e.Thing.GetClassName() == "NashGoreFootprint")
|| (e.Thing.GetClassName() == "NashGoreFootprintLeft")
|| (e.Thing.GetClassName() == "NashGoreFootprintRight") )
e.Thing.A_ChangeModel("",0,"","",0,"models/nashgore/Footprint","DemoFootprint.png");
else if ( e.Thing.GetClassName() == "NashGoreFootprintLeft" )
e.Thing.A_ChangeModel("",0,"","",0,"models/nashgore/Footprint","DemoFootprintL.png");
else if ( e.Thing.GetClassName() == "NashGoreFootprintRight" )
e.Thing.A_ChangeModel("",0,"","",0,"models/nashgore/Footprint","DemoFootprintR.png");
// eviternity stuff
else if ( (e.Thing.GetClassName() == "Archangelus")
|| (e.Thing.GetClassName() == "ArchangelusA")