mirror of
https://github.com/tribufu/ServerManagers
synced 2026-06-01 09:42:39 +00:00
fix missing return value
This commit is contained in:
parent
953ab22d16
commit
977227228a
1 changed files with 4 additions and 4 deletions
|
|
@ -2859,10 +2859,10 @@ namespace ServerManagerTool.Lib
|
||||||
|
|
||||||
private bool SendMessage(string message, CancellationToken token)
|
private bool SendMessage(string message, CancellationToken token)
|
||||||
{
|
{
|
||||||
if (SendShutdownMessages)
|
if (!SendShutdownMessages)
|
||||||
{
|
return false;
|
||||||
return SendMessage(Config.Default.RCON_MessageCommand, message, token);
|
|
||||||
}
|
return SendMessage(Config.Default.RCON_MessageCommand, message, token);
|
||||||
}
|
}
|
||||||
|
|
||||||
private bool SendMessage(string mode, string message, CancellationToken token)
|
private bool SendMessage(string mode, string message, CancellationToken token)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue