From 6445834045d3e6300a4581f938986b2ed47a9b72 Mon Sep 17 00:00:00 2001 From: Stefan Kania Date: Sun, 12 Oct 2025 16:12:02 +0200 Subject: [PATCH] Update lookuptable.lua --- jumper/core/lookuptable.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jumper/core/lookuptable.lua b/jumper/core/lookuptable.lua index 74cf997..e0139b0 100644 --- a/jumper/core/lookuptable.lua +++ b/jumper/core/lookuptable.lua @@ -22,11 +22,11 @@ end function lookupTable:hasPath(nodeA, nodeB) local found - found = self._pathDB[nodeA] and self._path[nodeA][nodeB] + found = self._pathDB[nodeA] and self._pathDB[nodeA][nodeB] if found then return true, true end - found = self._pathDB[nodeB] and self._path[nodeB][nodeA] + found = self._pathDB[nodeB] and self._pathDB[nodeB][nodeA] if found then return true, false end return false end -return lookupTable \ No newline at end of file +return lookupTable