mirror of
https://github.com/nzp-team/quakec.git
synced 2024-11-25 21:31:28 +00:00
CLIENT: Stop forcing a scale of 1.4x for client models
This commit is contained in:
parent
a3de55e071
commit
d3b088fcf0
1 changed files with 0 additions and 4 deletions
|
@ -559,16 +559,12 @@ noref void(float isnew) CSQC_Ent_Update =
|
||||||
self.flags = readfloat();
|
self.flags = readfloat();
|
||||||
self.stance = readbyte();
|
self.stance = readbyte();
|
||||||
|
|
||||||
self.scale = 1.4;
|
|
||||||
|
|
||||||
setmodelindex(self, self.modelindex);
|
setmodelindex(self, self.modelindex);
|
||||||
if (self.stance == 2)
|
if (self.stance == 2)
|
||||||
setsize(self, PLAYER_MINS_STANDING, PLAYER_MAXS_STANDING);
|
setsize(self, PLAYER_MINS_STANDING, PLAYER_MAXS_STANDING);
|
||||||
else
|
else
|
||||||
setsize(self, PLAYER_MINS_CROUCHING, PLAYER_MAXS_CROUCHING);
|
setsize(self, PLAYER_MINS_CROUCHING, PLAYER_MAXS_CROUCHING);
|
||||||
|
|
||||||
|
|
||||||
//setorigin(self, self.origin);
|
|
||||||
} else {
|
} else {
|
||||||
if(isnew)
|
if(isnew)
|
||||||
addentity(self);
|
addentity(self);
|
||||||
|
|
Loading…
Reference in a new issue