From 16720a2f7078476c1da483a6495dbec25a786695 Mon Sep 17 00:00:00 2001 From: Steve Dudenhoeffer Date: Tue, 4 Mar 2008 19:18:17 +0000 Subject: [PATCH] Fix for amb1343 - show_activity() had a messed up vformat() call --- plugins/include/amxmisc.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/include/amxmisc.inc b/plugins/include/amxmisc.inc index c70dbb9c..53598e1d 100755 --- a/plugins/include/amxmisc.inc +++ b/plugins/include/amxmisc.inc @@ -215,7 +215,7 @@ stock show_activity( id, const name[], const fmt[], any:... ) copy(prefix, charsmax(prefix), "PLAYER"); } new buffer[512]; - vformat(buffer, charsmax(buffer), fmt, 3); + vformat(buffer, charsmax(buffer), fmt, 4); #endif switch(get_pcvar_num(__amx_show_activity)) {