From b4299dcc2c89a34f1847b296c8c97f1b01d9cddd Mon Sep 17 00:00:00 2001 From: Sattva Date: Sun, 24 Sep 2023 16:36:43 +0300 Subject: [PATCH] Flights - DebugString - remove brackets To use Ctrl-W binding for easier editing. --- Leatrix_Plus.lua | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Leatrix_Plus.lua b/Leatrix_Plus.lua index 0fa88b9..10b936a 100644 --- a/Leatrix_Plus.lua +++ b/Leatrix_Plus.lua @@ -6726,7 +6726,8 @@ -- Build route string and debug string local numEnterHops = GetNumRoutes(index) - local debugString = '["' .. currentNode + --local debugString = '["' .. currentNode + local debugString = '"' .. currentNode local debugChatString = '["' .. currentNode local routeString = currentNode for i = 1, numEnterHops do @@ -6760,7 +6761,9 @@ routeString = routeString .. ":" .. destination end --debugString = debugString .. '"] = ' - debugString = debugString .. '"]' + --debugString = debugString .. '"]' + debugString = debugString .. '"' + debugChatString = debugChatString .. '"] = '