From 613577935c97af7e53fa3b3acd658b18aa32ad52 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Sun, 1 Mar 2020 14:39:30 +0100 Subject: [PATCH] fixed XLAT used incorrectly for leaves cut --- hud.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hud.cpp b/hud.cpp index ed15b5c2..1c1fad43 100644 --- a/hud.cpp +++ b/hud.cpp @@ -609,7 +609,7 @@ EX void drawStats() { int siz = vid.fsize; if(cwt.at->land == laClearing && clearing::imputed.approx_ld() >= 100000) { long_kills = true; - s = XLAT("leaves cut: " + (bignum(kills[moMutant]) + clearing::imputed).get_str(200)); + s = XLAT("leaves cut: %1", (bignum(kills[moMutant]) + clearing::imputed).get_str(200)); if(mouseovers == standard_help()) mouseovers = " "; while(siz > 4 && textwidth(siz, s) > vid.xres - textwidth(vid.fsize, scoreline)) siz--; }