whitespace and {}s

This commit is contained in:
Bill Currie 2001-10-06 03:05:33 +00:00
parent 24e80b21d4
commit 791232e6d3

View file

@ -829,13 +829,13 @@ PF_droptofloor (progs_t *pr)
VectorCopy (SVvector (ent, origin), end); VectorCopy (SVvector (ent, origin), end);
end[2] -= 256; end[2] -= 256;
trace = trace = SV_Move (SVvector (ent, origin),
SV_Move (SVvector (ent, origin), SVvector (ent, mins), SVvector (ent, maxs), end, false, SVvector (ent, mins),
ent); SVvector (ent, maxs), end, false, ent);
if (trace.fraction == 1 || trace.allsolid) if (trace.fraction == 1 || trace.allsolid) {
G_FLOAT (pr, OFS_RETURN) = 0; G_FLOAT (pr, OFS_RETURN) = 0;
else { } else {
VectorCopy (trace.endpos, SVvector (ent, origin)); VectorCopy (trace.endpos, SVvector (ent, origin));
SV_LinkEdict (ent, false); SV_LinkEdict (ent, false);
SVfloat (ent, flags) = (int) SVfloat (ent, flags) | FL_ONGROUND; SVfloat (ent, flags) = (int) SVfloat (ent, flags) | FL_ONGROUND;