Dont need to start server-interface with return now

This commit is contained in:
Cooldude2606
2017-12-08 16:45:51 +00:00
parent cab1207a85
commit 89fff7eba9
2 changed files with 1 additions and 2 deletions

View File

@@ -126,6 +126,7 @@ end
commands.add_command('server-interface', 'Runs the given input from the script', {'code',true}, function(event,args)
local callback = args.code
if not string.find(callback,'%s') and not string.find(callback,'return') then callback = 'return '..callback end
local success, err = Server.interface(callback)
player_return(err)
end)