From df52c16f25223dd8ebb19f7709ca4fce699b5c7a Mon Sep 17 00:00:00 2001 From: zaCade Date: Sat, 16 Mar 2019 21:26:32 +0100 Subject: [PATCH] Fix hostname prefix --- src/zriot/zombie.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zriot/zombie.inc b/src/zriot/zombie.inc index e9fb9ca..6aba60d 100644 --- a/src/zriot/zombie.inc +++ b/src/zriot/zombie.inc @@ -79,7 +79,7 @@ UpdateHostname() decl String:hostname_prefixed[256]; SetGlobalTransTarget(LANG_SERVER); - Format(hostname_prefixed, sizeof(hostname_prefixed), "%s %t", "Hostname prefix", hostname, gDay + 1, dCount); + Format(hostname_prefixed, sizeof(hostname_prefixed), "%s %t", hostname, "Hostname prefix", gDay + 1, dCount); SetHostname(hostname_prefixed); }