From 0c81c3002f50a4033a9c06670bd9dd759c54c6f3 Mon Sep 17 00:00:00 2001 From: TimePath Date: Thu, 24 Sep 2015 18:00:09 +1000 Subject: [PATCH] Fix transposed sprintf arguments --- qcsrc/lib/spawnfunc.qh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/lib/spawnfunc.qh b/qcsrc/lib/spawnfunc.qh index e443552ec..c474104d6 100644 --- a/qcsrc/lib/spawnfunc.qh +++ b/qcsrc/lib/spawnfunc.qh @@ -32,7 +32,7 @@ bool entityfieldassignablefromeditor(int i) { if (fieldname == "") continue; \ FIELDS_COMMON(_spawnfunc_check) \ whitelist(_spawnfunc_check) \ - LOG_WARNINGF(_("Entity field %s.%s (%s) is not whitelisted. If you believe this is an error, please file an issue.\n"), fieldname, #id, value); \ + LOG_WARNINGF(_("Entity field %s.%s (%s) is not whitelisted. If you believe this is an error, please file an issue.\n"), #id, fieldname, value); \ } \ this.spawnfunc_checked = true; \ } \ -- 2.39.2