diff --git a/src/transmog_scripts.cpp b/src/transmog_scripts.cpp index 8db315dd..451327e0 100644 --- a/src/transmog_scripts.cpp +++ b/src/transmog_scripts.cpp @@ -1164,17 +1164,6 @@ class PS_Transmogrification : public PlayerScript } } - if (sConfigMgr->GetOption("Transmogrification.EnablePlus", false)) - { - uint32 accountId = 0; - - if (player->GetSession()) - accountId = player->GetSession()->GetAccountId(); - - QueryResult resultAcc = LoginDatabase.Query("SELECT `membership_level` FROM `acore_cms_subscriptions` WHERE `account_name` COLLATE utf8mb4_general_ci = (SELECT `username` FROM `account` WHERE `id` = {})", accountId); - player->UpdatePlayerSetting("acore_cms_subscriptions", SETTING_TRANSMOG_MEMBERSHIP_LEVEL, resultAcc ? (*resultAcc)[0].Get() : 0); - } - #ifdef PRESETS if (sT->GetEnableSets()) sT->LoadPlayerSets(playerGUID);