Skip to content

Commit b5ed907

Browse files
authored
Merge pull request odamex#958 from odamex/killdeathstringspace
Add a space in spectating string between stats
2 parents 8d9011f + 4dfd214 commit b5ed907

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/src/sv_main.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ CVAR_FUNC_IMPL (sv_maxplayers)
185185
}
186186

187187
std::string status = SV_BuildKillsDeathsStatusString(*it);
188-
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator.(%s)\n",
188+
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator. (%s)\n",
189189
it->userinfo.netname.c_str(), status.c_str());
190190

191191
MSG_WriteSVC(
@@ -3590,7 +3590,7 @@ void SV_SpecPlayer(player_t &player, bool silent)
35903590
if (!silent)
35913591
{
35923592
std::string status = SV_BuildKillsDeathsStatusString(player);
3593-
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator.(%s)\n",
3593+
SV_BroadcastPrintf(PRINT_HIGH, "%s became a spectator. (%s)\n",
35943594
player.userinfo.netname.c_str(), status.c_str());
35953595
}
35963596

0 commit comments

Comments
 (0)