Core/GuildFinder: Remove as preparation for 9.1.5

Port From (https://github.com/TrinityCore/TrinityCore/commit/edc94e8ae8c5ddd46b53c706161a5511b3a3bcc3)
This commit is contained in:
hondacrx
2021-11-03 17:08:23 -04:00
parent e2673c627d
commit 798066708f
9 changed files with 0 additions and 1164 deletions
-32
View File
@@ -259,36 +259,4 @@ namespace Framework.Constants
public const uint Arena3v3 = 1200000;
public const uint Arena5v5 = 2000000;
}
public enum GuildFinderOptionsInterest
{
Questing = 0x01,
Dungeons = 0x02,
Raids = 0x04,
PVP = 0x08,
RolePlaying = 0x10,
All = Questing | Dungeons | Raids | PVP | RolePlaying
}
public enum GuildFinderOptionsAvailability
{
Weekdays = 0x1,
Weekends = 0x2,
Always = Weekdays | Weekends
}
public enum GuildFinderOptionsRoles
{
Tank = 0x1,
Healer = 0x2,
DPS = 0x4,
All = Tank | Healer | DPS
}
public enum GuildFinderOptionsLevel
{
Any = 0x1,
Max = 0x2,
All = Any | Max
}
}
@@ -688,11 +688,6 @@ namespace Framework.Database
PrepareStatement(CharStatements.DEL_CHAR_CUF_PROFILES_BY_ID, "DELETE FROM character_cuf_profiles WHERE guid = ? AND id = ?");
PrepareStatement(CharStatements.DEL_CHAR_CUF_PROFILES, "DELETE FROM character_cuf_profiles WHERE guid = ?");
// Guild Finder
PrepareStatement(CharStatements.REP_GUILD_FINDER_APPLICANT, "REPLACE INTO guild_finder_applicant (guildId, playerGuid, availability, classRole, interests, comment, submitTime) VALUES(?, ?, ?, ?, ?, ?, ?)");
PrepareStatement(CharStatements.DEL_GUILD_FINDER_APPLICANT, "DELETE FROM guild_finder_applicant WHERE guildId = ? AND playerGuid = ?");
PrepareStatement(CharStatements.REP_GUILD_FINDER_GUILD_SETTINGS, "REPLACE INTO guild_finder_guild_settings (guildId, availability, classRoles, interests, level, listed, comment) VALUES(?, ?, ?, ?, ?, ?, ?)");
PrepareStatement(CharStatements.DEL_GUILD_FINDER_GUILD_SETTINGS, "DELETE FROM guild_finder_guild_settings WHERE guildId = ?");
// Items that hold loot or money
PrepareStatement(CharStatements.SEL_ITEMCONTAINER_ITEMS, "SELECT container_id, item_id, item_count, follow_rules, ffa, blocked, counted, under_threshold, needs_quest, rnd_bonus, context, bonus_list_ids FROM item_loot_items");
@@ -1352,10 +1347,6 @@ namespace Framework.Database
DEL_CHAR_CUF_PROFILES_BY_ID,
DEL_CHAR_CUF_PROFILES,
REP_GUILD_FINDER_APPLICANT,
DEL_GUILD_FINDER_APPLICANT,
REP_GUILD_FINDER_GUILD_SETTINGS,
DEL_GUILD_FINDER_GUILD_SETTINGS,
REP_CALENDAR_EVENT,
DEL_CALENDAR_EVENT,