Change that could be responcible for m3 power fix

This commit is contained in:
Richard Allen 2012-10-20 22:58:31 +00:00
parent 3cd19cfb6a
commit a93e28aa2f

View file

@ -797,7 +797,8 @@ void ShotgunPattern(vec3_t origin, vec3_t origin2, int seed, gentity_t * ent, in
VectorMA(origin, 8192, forward, end);
VectorMA(end, r, right, end);
VectorMA(end, u, up, end);
if (ShotgunPellet(origin, end, ent) && !hitClient) {
if (ShotgunPellet(origin, end, ent)) {
if (!hitClient) {
hitClient = qtrue;
ent->client->accuracy_hits++;
// Elder: Statistics tracking
@ -815,6 +816,7 @@ void ShotgunPattern(vec3_t origin, vec3_t origin2, int seed, gentity_t * ent, in
}
}
}
}
// G_UndoTimeShiftFor(ent);
}