Quantcast

Added ChatPrint function

KyrosKrane [07-05-15 - 17:52]
Added ChatPrint function
Filename
AnnoyingPopupRemover/AnnoyingPopupRemover.lua
diff --git a/AnnoyingPopupRemover/AnnoyingPopupRemover.lua b/AnnoyingPopupRemover/AnnoyingPopupRemover.lua
index 259e673..b0bdfe5 100644
--- a/AnnoyingPopupRemover/AnnoyingPopupRemover.lua
+++ b/AnnoyingPopupRemover/AnnoyingPopupRemover.lua
@@ -42,6 +42,12 @@ function DebugPrint(...)
 end


+-- Print standard output to the chat frame.
+function ChatPrint(...)
+	print ("APR: ", ...);
+end
+
+
 -- Debugging code to see what the hell is being passed in...
 function PrintVarArgs(...)
 	local n = select('#', ...)