From 417ff279f392fc0a79bbbf1e6e7bb95e2bf14cab Mon Sep 17 00:00:00 2001 From: Dramacydal Date: Wed, 16 Jun 2021 10:07:01 +0300 Subject: [PATCH 1/2] fix uninitialized variable crash --- nodeinfo.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeinfo.lua b/nodeinfo.lua index bc0ab3c..689fe39 100644 --- a/nodeinfo.lua +++ b/nodeinfo.lua @@ -10,7 +10,7 @@ This file contains all the various information routines related to flight nodes. function EFM_NI_CheckReachable(myNode) local myDebug = false; - EFM_Shared_DebugMessage("Checking if node "..myNode.." is reachable on continent "..myContinent, myDebug); + EFM_Shared_DebugMessage("Checking if node "..myNode.." is reachable on current continent ", myDebug); if (EFM_ReachableNodes ~= nil) then for myContinent in pairs(EFM_ReachableNodes) do From c5ec4d2217676168a10cf8c516cf82fe20d9f62b Mon Sep 17 00:00:00 2001 From: Dramacydal Date: Wed, 16 Jun 2021 10:08:19 +0300 Subject: [PATCH 2/2] fix --- nodeinfo.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodeinfo.lua b/nodeinfo.lua index 689fe39..5b58b20 100644 --- a/nodeinfo.lua +++ b/nodeinfo.lua @@ -10,7 +10,7 @@ This file contains all the various information routines related to flight nodes. function EFM_NI_CheckReachable(myNode) local myDebug = false; - EFM_Shared_DebugMessage("Checking if node "..myNode.." is reachable on current continent ", myDebug); + EFM_Shared_DebugMessage("Checking if node "..myNode.." is reachable on current continent", myDebug); if (EFM_ReachableNodes ~= nil) then for myContinent in pairs(EFM_ReachableNodes) do