mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2024-11-13 00:24:29 +00:00
Change that could be responcible for m3 power fix
This commit is contained in:
parent
3cd19cfb6a
commit
a93e28aa2f
1 changed files with 16 additions and 14 deletions
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue