mirror of
https://github.com/etlegacy/wolfadmin.git
synced 2024-11-10 14:51:54 +00:00
fixed missing include for util
This commit is contained in:
parent
54ec0621ef
commit
0764a16046
6 changed files with 6 additions and 0 deletions
|
@ -16,6 +16,7 @@
|
|||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
local commands = require "luascripts.wolfadmin.commands.commands"
|
||||
local util = require "luascripts.wolfadmin.util.util"
|
||||
|
||||
function commandClientAnnounce(clientId, cmdArguments)
|
||||
local clientId = tonumber(cmdArguments[1])
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
local commands = require "luascripts.wolfadmin.commands.commands"
|
||||
local util = require "luascripts.wolfadmin.util.util"
|
||||
|
||||
function commandClientChatPrint(clientId, cmdArguments)
|
||||
local clientId = tonumber(cmdArguments[1])
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
local commands = require "luascripts.wolfadmin.commands.commands"
|
||||
local util = require "luascripts.wolfadmin.util.util"
|
||||
|
||||
function commandClientCenterPrint(clientId, cmdArguments)
|
||||
local clientId = tonumber(cmdArguments[1])
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
local commands = require "luascripts.wolfadmin.commands.commands"
|
||||
local util = require "luascripts.wolfadmin.util.util"
|
||||
|
||||
function commandClientCPM(clientId, cmdArguments)
|
||||
local clientId = tonumber(cmdArguments[1])
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
local commands = require "luascripts.wolfadmin.commands.commands"
|
||||
local util = require "luascripts.wolfadmin.util.util"
|
||||
|
||||
function commandClientPlayMusic(clientId, cmdArguments)
|
||||
local clientId = tonumber(cmdArguments[1])
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
local commands = require "luascripts.wolfadmin.commands.commands"
|
||||
local util = require "luascripts.wolfadmin.util.util"
|
||||
|
||||
function commandClientConsolePrint(clientId, cmdArguments)
|
||||
local clientId = tonumber(cmdArguments[1])
|
||||
|
|
Loading…
Reference in a new issue