X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=src%2Fmain%2Fjava%2Fnet%2Fpterodactylus%2Fsone%2Ftemplate%2FSoneAccessor.java;h=54a5a863520f35b8c7710c892561a2e992e39e09;hb=1c57e8be327fe76dbc82ba438bcaeb4023259e71;hp=97cf32751de0ef0d1c28bb3af9a677b4682adb77;hpb=44f2f20011d28bc1420dcfcc8b9ff61183e86e24;p=Sone.git diff --git a/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java b/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java index 97cf327..54a5a86 100644 --- a/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java +++ b/src/main/java/net/pterodactylus/sone/template/SoneAccessor.java @@ -29,7 +29,7 @@ import net.pterodactylus.util.template.ReflectionAccessor; *
niceName
*
Will show a combination of first name, middle name, and last name, if * available, otherwise the username of the Sone is returned.
- *
isFriend
+ *
friend
*
Will return {@code true} if the sone in question is a friend of the * currently logged in Sone (as determined by accessing the “currentSone” * variable of the given {@link DataProvider}).
@@ -50,7 +50,7 @@ public class SoneAccessor extends ReflectionAccessor { Sone sone = (Sone) object; if (member.equals("niceName")) { return getNiceName(sone); - } else if (member.equals("isFriend")) { + } else if (member.equals("friend")) { Sone currentSone = (Sone) dataProvider.getData("currentSone"); return currentSone.hasFriend(sone) ? true : null; } else if (member.equals("isCurrent")) {