56
edits
(Add support for discoveryModifier and activeModifier parameters) |
(Fixed nil check logic) |
||
Line 228: | Line 228: | ||
function p.getPointOfInterestTable(frame) | function p.getPointOfInterestTable(frame) | ||
local args = frame.args ~= nil and frame.args or | local args = (frame and frame.args ~= nil and frame.args) or {} | ||
local POIs = {} | local POIs = {} | ||
local POI_Strings = {} | local POI_Strings = {} |
edits