public async Task ToggleNotifications()
    {
        bool status;

        if (TeamUtils.userSettings.FirstOrDefault(x => x.DiscordID == Context.User.Id) != null && TeamUtils.userSettings.FirstOrDefault(x => x.DiscordID == Context.User.Id).NotificationsEnabled)
        {
            TeamUtils.UpdateSettings(Context.User.Id, false); status = false;
        }
        else
        {
            TeamUtils.UpdateSettings(Context.User.Id, true); status = true;
        }

        await ReplyAsync("", false, Utilities.GetEmbedMessage("Notifications", "Updated", $" Notifications Enabled: {status.ToString()}", Context.User)); return;
    }