Uncomment updateLimb stuff

cause we do dat
This commit is contained in:
Tyler Young 2022-12-27 21:55:13 -05:00
parent 8cb75597b5
commit 6987f175d0
2 changed files with 5 additions and 5 deletions

View file

@ -248,17 +248,17 @@ void(entity who) makeCrawler =
if(who.head.deadflag)
{
setmodel(who.head,"models/ai/zhc^.mdl");
//updateLimb (who, 0, world);
updateLimb (who, 0, world);
}
if(who.larm.deadflag)
{
setmodel(who.larm,"models/ai/zalc(.mdl");
//updateLimb (who, 1, world);
updateLimb (who, 1, world);
}
if(who.rarm.deadflag)
{
setmodel(who.rarm,"models/ai/zarc(.mdl");
//updateLimb (who, 2, world);
updateLimb (who, 2, world);
}
who.crawling = 1;

View file

@ -747,7 +747,7 @@ void Parse_Damage () = // DO NOT TOUCH
body_ent.larm.solid = SOLID_NOT;
setmodel(body_ent.larm,"");
body_ent.larm.frame = 0;
//updateLimb (body_ent.larm.owner, 1, world);
updateLimb (body_ent.larm.owner, 1, world);
}
body_ent.larm.washit = 0;
@ -767,7 +767,7 @@ void Parse_Damage () = // DO NOT TOUCH
body_ent.rarm.solid = SOLID_NOT;
setmodel(body_ent.rarm,"");
body_ent.rarm.frame = 0;
//updateLimb (body_ent.rarm.owner, 2, world);
updateLimb (body_ent.rarm.owner, 2, world);
}
body_ent.rarm.washit = 0;