From 49b43daa21f3a098f3f17cd921beaeabe699edbf Mon Sep 17 00:00:00 2001 From: Kevin Lyles Date: Fri, 29 Jan 2010 12:59:05 -0600 Subject: [PATCH] use lua function names instead of blizzard's special names --- WeightsWatcher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/WeightsWatcher.lua b/WeightsWatcher.lua index b0ae418..fbce155 100644 --- a/WeightsWatcher.lua +++ b/WeightsWatcher.lua @@ -845,7 +845,7 @@ end function WeightsWatcher:preprocess(text) for pattern, replacement in pairs(Preprocess) do if string.find(text, pattern) then - text = gsub(text, pattern, replacement) + text = string.gsub(text, pattern, replacement) end end -- 1.7.9.5