Skip to content

Commit

Permalink
fix add friend button
Browse files Browse the repository at this point in the history
  • Loading branch information
foglio1024 committed Sep 16, 2023
1 parent 80d77ff commit 60573af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TCC.Core/ViewModels/PlayerMenuViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ public string GKickLabelText

public bool IsBlocked => _name != "" && Game.BlockList.Contains(_name);

public bool IsFriend => !Game.Friends.Has(_name);
public bool IsFriend => Game.Friends.Has(_name);

public bool ShowFpsUtils => StubInterface.Instance.IsStubAvailable
&& StubInterface.Instance.IsFpsModAvailable
Expand Down

0 comments on commit 60573af

Please sign in to comment.