From af4e88030bca7bd492596475af5805cc4c1faca6 Mon Sep 17 00:00:00 2001 From: Mattes D Date: Thu, 22 Sep 2016 12:54:13 +0200 Subject: [PATCH] InfoReg: Don't fail if there are no commands to register. --- Server/Plugins/InfoReg.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Server/Plugins/InfoReg.lua b/Server/Plugins/InfoReg.lua index 40a5deacf..a605507de 100644 --- a/Server/Plugins/InfoReg.lua +++ b/Server/Plugins/InfoReg.lua @@ -159,7 +159,9 @@ function RegisterPluginInfoCommands() end -- Loop through all commands in the plugin info, register each: - RegisterSubcommands("", g_PluginInfo.Commands, 1) + if (g_PluginInfo.Commands) then + RegisterSubcommands("", g_PluginInfo.Commands, 1) + end end @@ -190,7 +192,9 @@ function RegisterPluginInfoConsoleCommands() end -- Loop through all commands in the plugin info, register each: - RegisterSubcommands("", g_PluginInfo.ConsoleCommands, 1) + if (g_PluginInfo.ConsoleCommands) then + RegisterSubcommands("", g_PluginInfo.ConsoleCommands, 1) + end end