Skip to content
This repository has been archived by the owner on Jan 24, 2023. It is now read-only.

Commit

Permalink
Removed VRC+ requirement for avatar favorites.
Browse files Browse the repository at this point in the history
  • Loading branch information
RequiDev committed Jul 25, 2022
1 parent 63e7fcf commit 101a0f2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ReModCE/Components/AvatarFavoritesComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -544,8 +544,9 @@ private void OnAvatarInstantiated(string url, GameObject avatar, AvatarPerforman

private void FavoriteAvatar(ApiAvatar apiAvatar)
{
const bool riotMode = true;
var isSupporter = APIUser.CurrentUser.isSupporter;
if (!isSupporter)
if (!riotMode && !isSupporter)
{
VRCUiPopupManager.prop_VRCUiPopupManager_0.ShowAlert("ReMod CE", "You need VRC+ to use this feature.\nWe're not trying to destroy VRChat's monetization.");
return;
Expand Down

1 comment on commit 101a0f2

@SouljaVR
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nice

Please sign in to comment.