mirror of
https://github.com/alliedmodders/amxmodx.git
synced 2024-12-25 06:15:37 +03:00
Remove useless fmt call @ scrollmsg.sma
This commit is contained in:
parent
e7f2201702
commit
44b32e30b5
@ -65,7 +65,7 @@ public msgInit()
|
|||||||
|
|
||||||
new hostname[64]
|
new hostname[64]
|
||||||
get_cvar_string("hostname", hostname, charsmax(hostname))
|
get_cvar_string("hostname", hostname, charsmax(hostname))
|
||||||
replace(g_scrollMsg, charsmax(g_scrollMsg), "%version%", fmt("%s.%s", AMXX_VERSION_MAJOR, AMXX_VERSION_MINOR))
|
replace(g_scrollMsg, charsmax(g_scrollMsg), "%version%", AMXX_VERSION_MAJOR + "." + AMXX_VERSION_MINOR)
|
||||||
replace(g_scrollMsg, charsmax(g_scrollMsg), "%hostname%", hostname)
|
replace(g_scrollMsg, charsmax(g_scrollMsg), "%hostname%", hostname)
|
||||||
|
|
||||||
g_Length = strlen(g_scrollMsg)
|
g_Length = strlen(g_scrollMsg)
|
||||||
|
Loading…
Reference in New Issue
Block a user