mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
Light warning string cleanup
This commit is contained in:
parent
fdd74aa622
commit
1ed7fd8203
@ -649,7 +649,7 @@ void RCON_CmdQuery_f(const CCommand& args)
|
||||
{
|
||||
if (!RCONClient()->IsInitialized())
|
||||
{
|
||||
Warning(eDLL_T::CLIENT, "Failed to issue command to RCON server: uninitialized\n");
|
||||
Warning(eDLL_T::CLIENT, "Failed to issue command to RCON server: %s\n", "uninitialized");
|
||||
return;
|
||||
}
|
||||
else if (RCONClient()->IsConnected())
|
||||
@ -680,7 +680,7 @@ void RCON_CmdQuery_f(const CCommand& args)
|
||||
}
|
||||
else
|
||||
{
|
||||
Warning(eDLL_T::CLIENT, "Failed to issue command to RCON server: unconnected\n");
|
||||
Warning(eDLL_T::CLIENT, "Failed to issue command to RCON server: %s\n", "unconnected");
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user