Just noticed a warning popping up, when hovering over any entity.
I fixed it by modifying /picker/notes.lua after line 363 like follows:
local function get_note( ent )
if ent.name == "invis-note" then
return global.notes_by_invis[ent.unit_number]
end
if global.notes_by_target then
return global.notes_by_target[ent.unit_number]
end
return ""
end
it seems, that global.notes_by_target may be nil.
Otherwise great work, can't play without it :)