mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 11:51:11 +00:00
Fixing updateLimb AGAIN
just works now
This commit is contained in:
parent
278e5f1eff
commit
c52c16f9b7
1 changed files with 3 additions and 2 deletions
|
@ -726,6 +726,7 @@ void Parse_Damage () = // DO NOT TOUCH
|
|||
|
||||
body_ent.usedent = self;
|
||||
body_ent.bleedingtime = time + 2;
|
||||
updateLimb (body_ent.head.owner, 0, world);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -747,7 +748,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 +768,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;
|
||||
|
|
Loading…
Reference in a new issue