Flights - DebugString - remove brackets

To use Ctrl-W binding for easier editing.
This commit is contained in:
Sattva
2023-09-24 16:36:43 +03:00
parent 7dfb9bf2f3
commit b4299dcc2c
+5 -2
View File
@@ -6726,7 +6726,8 @@
-- Build route string and debug string -- Build route string and debug string
local numEnterHops = GetNumRoutes(index) local numEnterHops = GetNumRoutes(index)
local debugString = '["' .. currentNode --local debugString = '["' .. currentNode
local debugString = '"' .. currentNode
local debugChatString = '["' .. currentNode local debugChatString = '["' .. currentNode
local routeString = currentNode local routeString = currentNode
for i = 1, numEnterHops do for i = 1, numEnterHops do
@@ -6760,7 +6761,9 @@
routeString = routeString .. ":" .. destination routeString = routeString .. ":" .. destination
end end
--debugString = debugString .. '"] = ' --debugString = debugString .. '"] = '
debugString = debugString .. '"]' --debugString = debugString .. '"]'
debugString = debugString .. '"'
debugChatString = debugChatString .. '"] = ' debugChatString = debugChatString .. '"] = '