diff --git a/ReModCE/Components/AvatarFavoritesComponent.cs b/ReModCE/Components/AvatarFavoritesComponent.cs index 7eb4963..23fa743 100644 --- a/ReModCE/Components/AvatarFavoritesComponent.cs +++ b/ReModCE/Components/AvatarFavoritesComponent.cs @@ -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;