X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fclient%2Fhud.qc;h=1053c5e5ff5178c2dfff9035f0b5d2a8cb5239a7;hp=6ce72820b87ae97b463253a37eee00576f512dee;hb=71b2295b8ed7e2d9a5785467e8d9f65b69494b89;hpb=da67e97006134e745988867d0de18e017e7c553f diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 6ce72820b8..1053c5e5ff 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -2983,9 +2983,9 @@ void HUD_KillNotify(string s1, string s2, string s3, float type, float msg) // s } } else if(msg == MSG_KILL_ACTION_SPREE) { if(gentle) - print (sprintf(_("^1%s^1 needs a restart after a %s scoring spree\n"), s1, s2)); + print (sprintf(_("^1%s^1 needs a restart after a %d scoring spree\n"), s1, stof(s2))); else - print (sprintf(_("^1%s^1 died with a %s kill spree\n"), s1, s2)); + print (sprintf(_("^1%s^1 died with a %d kill spree\n"), s1, stof(s2))); } else if(msg == MSG_INFO) { if(type == INFO_GOTFLAG) { // here, s2 is the flag name HUD_KillNotify_Push(s1, s2, 0, INFO_GOTFLAG);