Flights - DebugString - remove brackets
To use Ctrl-W binding for easier editing.
This commit is contained in:
parent
7dfb9bf2f3
commit
b4299dcc2c
1 changed files with 5 additions and 2 deletions
|
|
@ -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 .. '"] = '
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue