From 9bae1b9e25b25981dc2c6e2b4f80c671c2da105d Mon Sep 17 00:00:00 2001 From: Joao Pasqualini Costa Date: Tue, 9 Apr 2013 17:54:57 -0300 Subject: [PATCH] Fix #316 It still have a bug when using string like this: " teste {{}} teste" --- modules/game_console/console.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/game_console/console.lua b/modules/game_console/console.lua index 0bd8643c..82d485c8 100644 --- a/modules/game_console/console.lua +++ b/modules/game_console/console.lua @@ -466,7 +466,7 @@ function addTabText(text, speaktype, tab, creatureName) -- Remove the curly braces for i = 1, #highlightData / 3 do local dataBlock = { _start = highlightData[(i-1)*3+1], _end = highlightData[(i-1)*3+2], words = highlightData[(i-1)*3+3] } - text = text:gsub("{"..dataBlock.words.."}", dataBlock.words) + text = text:gsub("%{(.-)%}", dataBlock.words, 1) -- Recalculate positions as braces are removed highlightData[(i-1)*3+1] = dataBlock._start - ((i-1) * 2)