WEAPON_SATCHEL: Dropp satchel bbox causing issues, so compromise: make it thin, but retain the same height.

This commit is contained in:
Marco Cawthorne 2023-01-05 23:33:33 -08:00
parent 5a900bc834
commit 8652d02464
Signed by: eukara
GPG key ID: CE2032F0A2882A22

View file

@ -64,7 +64,7 @@ s_satchel_drop(entity master, vector src, vector vel)
satch.avelocity = [0,400,0];
satch.touch = s_satchel_touch;
setmodel(satch, "models/w_satchel.mdl");
setsize(satch, [-4,-4,-4], [4,4,4]);
setsize(satch, [-1,-1,-4], [1,1,4]);
setorigin(satch, src);
}