mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-22 11:51:11 +00:00
SERVER: Stop removing limbs for crawlers on STANDARD progs
This commit is contained in:
parent
f76c031bf2
commit
9001cf050e
1 changed files with 3 additions and 3 deletions
|
@ -290,7 +290,7 @@ void(entity who) makeCrawler =
|
|||
|
||||
#ifndef FTE
|
||||
|
||||
updateLimb (who, 0, world);
|
||||
updateLimb (who, 0, who.head);
|
||||
|
||||
#endif // FTE
|
||||
|
||||
|
@ -301,7 +301,7 @@ void(entity who) makeCrawler =
|
|||
|
||||
#ifndef FTE
|
||||
|
||||
updateLimb (who, 1, world);
|
||||
updateLimb (who, 1, who.larm);
|
||||
|
||||
#endif // FTE
|
||||
|
||||
|
@ -312,7 +312,7 @@ void(entity who) makeCrawler =
|
|||
|
||||
#ifndef FTE
|
||||
|
||||
updateLimb (who, 2, world);
|
||||
updateLimb (who, 2, who.rarm);
|
||||
|
||||
#endif // FTE
|
||||
|
||||
|
|
Loading…
Reference in a new issue