Fix new player-is-x mixins

- Call the real method from isFriended
- Call the real method from isIgnored
- Add null check for getClanMembers

Signed-off-by: Tomas Slusny <slusnucky@gmail.com>
This commit is contained in:
Tomas Slusny
2018-01-14 05:02:05 +01:00
parent 9e54bdbcb5
commit d41c6ec6d8
5 changed files with 17 additions and 16 deletions

View File

@@ -338,4 +338,12 @@ public interface RSClient extends RSGameEngine, Client
@Import("destinationY")
int getDestinationY();
@Import("isFriended")
@Override
boolean isFriended(String name, boolean mustBeLoggedIn);
@Import("isIgnored")
@Override
boolean isIgnored(String name);
}