# HG changeset patch
# User unc0rr
# Date 1408722206 -14400
# Node ID c3daae6fd723242562e481e5e38d8f532d4648a0
# Parent  5012e1f9e89314c50667329f1e57c1ff65a9f1eb
Fix issue 813

diff -r 5012e1f9e893 -r c3daae6fd723 QTfrontend/ui/page/pagegamestats.cpp
--- a/QTfrontend/ui/page/pagegamestats.cpp	Fri Aug 22 00:57:07 2014 +0400
+++ b/QTfrontend/ui/page/pagegamestats.cpp	Fri Aug 22 19:43:26 2014 +0400
@@ -208,7 +208,8 @@
         case 'D' :
         {
             int i = info.indexOf(' ');
-            QString message = "<p><img src=\":/res/StatsBestShot.png\"> " + PageGameStats::tr("The best shot award was won by <b>%1</b> with <b>%2</b> pts.").arg(info.mid(i + 1), info.left(i)) + "</p>";
+            int num = info.left(i).toInt();
+            QString message = "<p><img src=\":/res/StatsBestShot.png\"> " + PageGameStats::tr("The best shot award was won by <b>%1</b> with <b>%2</b> pts.", "", num).arg(info.mid(i + 1), info.left(i)) + "</p>";
             AddStatText(message);
             break;
         }