Skip to content

Commit

Permalink
Print weapon name
Browse files Browse the repository at this point in the history
  • Loading branch information
osm authored and dusty-qw committed Aug 31, 2024
1 parent 2457bc1 commit 11afe2b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/match.c
Original file line number Diff line number Diff line change
Expand Up @@ -1648,9 +1648,9 @@ void PrintCountdown(int seconds)
strlcat(text, va("Break on death %11s\n",
(int)cvar(FB_CVAR_BREAK_ON_DEATH) ? redtext("on") : redtext("off")),
sizeof(text));
strlcat(text, va("Bot skill level %10s\n", dig3(FrogbotSkillLevel())), sizeof(text));
strlcat(text, va("Bot weapon %15s\n", redtext(WpName(FrogbotWeapon()))), sizeof(text));
strlcat(text, va("Bot health %15s\n", dig3(FrogbotHealth())), sizeof(text));
strlcat(text, va("Bot weapon %15s\n", dig3(FrogbotWeapon())), sizeof(text));
strlcat(text, va("Bot skill %16s\n", dig3(FrogbotSkillLevel())), sizeof(text));
}

if (matchtag[0])
Expand Down

0 comments on commit 11afe2b

Please sign in to comment.