Dedicated server can give clients the permission to use commands that only exist in the client project (los, lights, control, etc). Closes #476

This commit is contained in:
Joonas Rikkonen
2018-07-16 11:43:50 +03:00
parent 734b86bfba
commit ac5bad3011
3 changed files with 14 additions and 2 deletions
@@ -88,6 +88,7 @@ namespace Barotrauma
public void Execute(string[] args)
{
if (onExecute == null) return;
onExecute(args);
}
@@ -100,6 +101,7 @@ namespace Barotrauma
{
if (onClientRequestExecute == null)
{
if (onExecute == null) return;
onExecute(args);
}
else