actor mixin: fix getInteracting when index is 65535

There are short times where it is this before being set to -1
This commit is contained in:
Adam
2018-06-23 21:07:01 -04:00
parent 9d8fc7f096
commit 00a5845c7e

View File

@@ -68,7 +68,7 @@ public abstract class RSActorMixin implements RSActor
public Actor getInteracting()
{
int i = getRSInteracting();
if (i == -1)
if (i == -1 || i == 65535)
{
return null;
}