Skip to content

Commit

Permalink
Merge pull request runelite#4430 from Joshua-F/fix/actorquery-interac…
Browse files Browse the repository at this point in the history
…ting

Use the supplied actor passed to ActorQuery#isInteractingWith
  • Loading branch information
deathbeam authored Jul 20, 2018
2 parents 0a4ce4c + fb0dc0c commit 67bb02c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public QueryType animationEquals(int animation)
@SuppressWarnings("unchecked")
public QueryType isInteractingWith(Actor actor)
{
predicate = and(a -> a.getInteracting().equals(a));
predicate = and(a -> a.getInteracting().equals(actor));
return (QueryType) this;
}

Expand Down

0 comments on commit 67bb02c

Please sign in to comment.