Skip to content

Commit abd7dc0

Browse files
committed
fix later
1 parent f07796e commit abd7dc0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

common/src/main/kotlin/com/lambda/friend/FriendManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ object FriendManager : Configurable(FriendConfig), Loadable {
3030

3131
fun add(profile: GameProfile) { if (!contains(profile)) friends.add(profile) }
3232

33-
fun remove(profile: GameProfile) { friends.remove(profile) }
33+
fun remove(profile: GameProfile) = friends.remove(profile) // FixMe: For some reasons you can't remove friends
3434

3535
fun get(name: String) = friends.firstOrNull { it.name == name }
3636
fun get(uuid: UUID) = friends.firstOrNull { it.id == uuid }

0 commit comments

Comments
 (0)