From 4d89d47f4f3993e19690e50a6d49f325acfe340c Mon Sep 17 00:00:00 2001 From: Cjewett Date: Tue, 19 Nov 2019 00:17:06 -0500 Subject: [PATCH] Fix namespace causing slash commands to not work --- HonorAssist.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/HonorAssist.lua b/HonorAssist.lua index db760ca..6f37916 100644 --- a/HonorAssist.lua +++ b/HonorAssist.lua @@ -84,7 +84,7 @@ SlashCmdList["HONORASSIST"] = function(msg) HonorAssist:PrintHelpInformation() end - local slashCommandMsg = AutoInvite:SplitString(msg, " ") + local slashCommandMsg = HonorAssist:SplitString(msg, " ") local subCommand = slashCommandMsg[1] if subCommand == "help" then @@ -107,7 +107,7 @@ end function HonorAssist:PrintHelpInformation() print("HonorAssist Help Information") - print("/honorassist, /honorassist help -- Displays help information for AutoInvite addon.") + print("/honorassist, /honorassist help -- Displays help information for HonorAssist addon.") print("/honorassist log -- Enables and disablesdetailed messages to chat about how much honor a kill was worth based on diminishing returns.") print("/honorassist show -- Shows the Honor Assist (Daily) tracker.") print("/honorassist hide -- Hides the Honor Assist (Daily) tracker.")