Skip to content

Commit

Permalink
fix typo in score printout
Browse files Browse the repository at this point in the history
  • Loading branch information
no-lex committed Oct 14, 2023
1 parent 395a1fe commit 2d4783e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapcontrol.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ void calcscores()
//so now we check if either team is all dead
if(team1size == team1dead || totalsecs - lastround >= maxgametime) //team 1 is all dead, or timer has run out
{
printf("Tean 1 has died\n");
printf("Team 1 has died\n");
server::teaminfos[1].score += 1; //add score to team 2
//now award all alive players on other team 1 point for living
for(int j = 0; j < server::clients.size(); ++j)
Expand Down

0 comments on commit 2d4783e

Please sign in to comment.