api: modify RemoveFriend to accept a nameable

Also update javadoc to reflect that it now also includes ignores
This commit is contained in:
Adam
2019-12-18 17:41:59 -05:00
parent 8592e4d342
commit 608ec68ae6
2 changed files with 5 additions and 4 deletions

View File

@@ -251,7 +251,7 @@ public class FriendNotesPlugin extends Plugin
public void onRemovedFriend(RemovedFriend event)
{
// Delete a friend's note if they are removed
final String displayName = Text.toJagexName(event.getName());
final String displayName = Text.toJagexName(event.getNameable().getName());
log.debug("Remove friend: '{}'", displayName);
setFriendNote(displayName, null);
}