CLIENT: Stop forcing a scale of 1.4x for client models

This commit is contained in:
cypress 2023-12-04 14:31:16 -05:00
parent a3de55e071
commit d3b088fcf0

View file

@ -559,16 +559,12 @@ noref void(float isnew) CSQC_Ent_Update =
self.flags = readfloat();
self.stance = readbyte();
self.scale = 1.4;
setmodelindex(self, self.modelindex);
if (self.stance == 2)
setsize(self, PLAYER_MINS_STANDING, PLAYER_MAXS_STANDING);
else
setsize(self, PLAYER_MINS_CROUCHING, PLAYER_MAXS_CROUCHING);
//setorigin(self, self.origin);
} else {
if(isnew)
addentity(self);