mirror of
https://github.com/notwa/mm
synced 2024-11-05 00:19:02 -08:00
prevent multiple focus
This commit is contained in:
parent
391c51575c
commit
9b6c63df2d
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ function ActorLister:run(now)
|
|||
print(str)
|
||||
end
|
||||
|
||||
if (focus_this and not focus_link) or addr == target then
|
||||
if (focus_this and not focus_link) or (focus_link and addr == target) then
|
||||
local actor = {
|
||||
name = name,
|
||||
addr = addr,
|
||||
|
|
Loading…
Reference in a new issue