From 097dd56e35adf73a7bd5d45835234d55bb049734 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Thu, 14 Sep 2017 20:26:44 +0100 Subject: [PATCH] Fix some spelling mistakes detected by Debian's Lintian tool Signed-off-by: Simon McVittie --- src/g_ctf.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/g_ctf.c b/src/g_ctf.c index ab155a1..d4030c7 100644 --- a/src/g_ctf.c +++ b/src/g_ctf.c @@ -731,7 +731,7 @@ CTFFragBonuses(edict_t *targ, edict_t *inflictor, edict_t *attacker) flag carrier */ attacker->client->resp.score += CTF_CARRIER_DANGER_PROTECT_BONUS; gi.bprintf(PRINT_MEDIUM, - "%s defends %s's flag carrier against an agressive enemy\n", + "%s defends %s's flag carrier against an aggressive enemy\n", attacker->client->pers.netname, CTFTeamName(attacker->client->resp.ctf_team)); @@ -3621,7 +3621,7 @@ CTFWinElection(void) gi.bprintf(PRINT_HIGH, "%s has become an admin.\n", ctfgame.etarget->client->pers.netname); gi.cprintf(ctfgame.etarget, PRINT_HIGH, - "Type 'admin' to access the adminstration menu.\n"); + "Type 'admin' to access the administration menu.\n"); break; case ELECT_MAP: @@ -3723,7 +3723,7 @@ CTFReady(edict_t *ent) if (ent->client->resp.ready) { - gi.cprintf(ent, PRINT_HIGH, "You have already commited.\n"); + gi.cprintf(ent, PRINT_HIGH, "You have already committed.\n"); return; } @@ -3758,8 +3758,8 @@ CTFReady(edict_t *ent) if (!j && t1 && t2) { - /* everyone has commited */ - gi.bprintf(PRINT_CHAT, "All players have commited. Match starting\n"); + /* everyone has committed */ + gi.bprintf(PRINT_CHAT, "All players have committed. Match starting\n"); ctfgame.match = MATCH_PREGAME; ctfgame.matchtime = level.time + matchstarttime->value; ctfgame.countdown = false; @@ -3785,7 +3785,7 @@ CTFNotReady(edict_t *ent) if (!ent->client->resp.ready) { - gi.cprintf(ent, PRINT_HIGH, "You haven't commited.\n"); + gi.cprintf(ent, PRINT_HIGH, "You haven't committed.\n"); return; } @@ -5013,7 +5013,7 @@ CTFAdmin_Reset(edict_t *ent, pmenuhnd_t *p) PMenu_Close(ent); /* go back to normal mode */ - gi.bprintf(PRINT_CHAT, "Match mode has been terminated, reseting to normal game.\n"); + gi.bprintf(PRINT_CHAT, "Match mode has been terminated, resetting to normal game.\n"); ctfgame.match = MATCH_NONE; gi.cvar_set("competition", "1"); CTFResetAllPlayers(); @@ -5082,7 +5082,7 @@ CTFAdmin(edict_t *ent) ent->client->resp.admin = true; gi.bprintf(PRINT_HIGH, "%s has become an admin.\n", ent->client->pers.netname); - gi.cprintf(ent, PRINT_HIGH, "Type 'admin' to access the adminstration menu.\n"); + gi.cprintf(ent, PRINT_HIGH, "Type 'admin' to access the administration menu.\n"); } if (!ent->client->resp.admin)