Skip to content

Commit

Permalink
Merge pull request #326 from frehall/rls-fired
Browse files Browse the repository at this point in the history
New go on adding amount of rockets fired to endgame stats
  • Loading branch information
tcsabina committed Jan 24, 2024
2 parents 026053c + ff2873e commit 9fb575f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stats.c
Original file line number Diff line number Diff line change
Expand Up @@ -739,7 +739,7 @@ void OnePlayerStats(gedict_t *p, int tp)
// weapons
G_bprint(2, "%s:%s%s%s%s%s\n", redtext("Wp"),
(a_lg ? va(" %s%.1f%% (%d/%d)", redtext("lg"), e_lg, (int)h_lg, (int)a_lg) : ""),
(ph_rl ? va(" %s%.1f%%", redtext("rl"), ph_rl) : ""),
(ph_rl ? va(" %s%.1f%% (%d/%d)", redtext("rl"), ph_rl, (int)vh_rl, (int)a_rl) : ""),
(ph_gl ? va(" %s%.1f%%", redtext("gl"), ph_gl) : ""),
(e_sg ? va(" %s%.1f%%", redtext("sg"), e_sg) : ""),
(e_ssg ? va(" %s%.1f%%", redtext("ssg"), e_ssg) : ""));
Expand Down

0 comments on commit 9fb575f

Please sign in to comment.