[IGS] Авто-активация товара

Не хочу отключать полностью инвентарь, но хочу сделать чтобы привилегия сама активировалась после покупки

IGS("Спонсор", "sponsor")
    :SetSAMGroup("sponsor")
    :SetTerm(31)
    :SetPrice(3000)
    :SetCategory("Привилегии")
    :SetCanActivate(false)
    :SetStackable(true)
    :SetGetPrice(function(pl)
        if pl:GetUserGroup() == "sponsor" then
            return 1000
        end
    end)

if SERVER then
    hook.Add("IGS.PlayerPurchasedItem", "AutoActivateSponsor", function(pl, ITEM)
        if ITEM.uid == "sponsor" then return end
        IGS.Activate(ITEM.uid, function() pl:ChatPrint("[IGS] Привилегия «Спонсор» активирована на 31 день.") end)
    end)
end