mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Misc: Updated default expansion to 9
This commit is contained in:
@@ -40,7 +40,7 @@ CREATE TABLE `account` (
|
||||
`lock_country` varchar(2) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '00',
|
||||
`last_login` timestamp NULL DEFAULT NULL,
|
||||
`online` tinyint unsigned NOT NULL DEFAULT '0',
|
||||
`expansion` tinyint unsigned NOT NULL DEFAULT '8',
|
||||
`expansion` tinyint unsigned NOT NULL DEFAULT '9',
|
||||
`mutetime` bigint NOT NULL DEFAULT '0',
|
||||
`mutereason` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
`muteby` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
|
||||
@@ -2634,7 +2634,8 @@ INSERT INTO `updates` VALUES
|
||||
('2022_10_03_00_auth.sql','B956A37F71B42EB0289C2066A15D1F6C02F21E5A','ARCHIVED','2022-10-03 21:32:38',0),
|
||||
('2022_11_20_00_auth.sql','37123D83589CFD96472D9187799C1F3FD67645DD','ARCHIVED','2022-11-20 11:05:20',0),
|
||||
('2022_12_16_00_auth.sql','249B00480ACC8B67C908435748C202D8363C6EDE','RELEASED','2022-12-16 22:39:07',0),
|
||||
('2022_12_17_00_auth.sql','0D3963AC2DBF74A4C8B88EA4A680C046FCCF8E70','RELEASED','2022-12-17 07:34:53',0);
|
||||
('2022_12_17_00_auth.sql','0D3963AC2DBF74A4C8B88EA4A680C046FCCF8E70','RELEASED','2022-12-17 07:34:53',0),
|
||||
('2022_12_17_01_auth.sql','5D1E2EA3C3CE087F7FB647CD0DE000979961863C','RELEASED','2022-12-17 13:09:19',0);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
|
||||
1
sql/updates/auth/master/2022_12_17_01_auth.sql
Normal file
1
sql/updates/auth/master/2022_12_17_01_auth.sql
Normal file
@@ -0,0 +1 @@
|
||||
ALTER TABLE `account` MODIFY `expansion` tinyint unsigned NOT NULL DEFAULT '9';
|
||||
@@ -1242,7 +1242,7 @@ uint8 Item::GetBagSlot() const
|
||||
|
||||
bool Item::IsEquipped() const
|
||||
{
|
||||
return !IsInBag() && ((m_slot >= EQUIPMENT_SLOT_START && m_slot < EQUIPMENT_SLOT_END)
|
||||
return !IsInBag() && (m_slot < EQUIPMENT_SLOT_END
|
||||
|| (m_slot >= PROFESSION_SLOT_START && m_slot < PROFESSION_SLOT_END));
|
||||
}
|
||||
|
||||
|
||||
@@ -699,7 +699,8 @@ DeclinedNames = 0
|
||||
# Expansion
|
||||
# Description: Allow server to use content from expansions. Checks for expansion-related
|
||||
# map files, client compatibility and class/race character creation.
|
||||
# Default: 8 - (Expansion 8)
|
||||
# Default: 9 - (Expansion 9)
|
||||
# 8 - (Expansion 8)
|
||||
# 7 - (Expansion 7)
|
||||
# 6 - (Expansion 6)
|
||||
# 5 - (Expansion 5)
|
||||
@@ -709,7 +710,7 @@ DeclinedNames = 0
|
||||
# 1 - (Expansion 1)
|
||||
# 0 - (Disabled, Ignore and disable expansion content (maps, races, classes)
|
||||
|
||||
Expansion = 8
|
||||
Expansion = 9
|
||||
|
||||
#
|
||||
# MinPlayerName
|
||||
|
||||
Reference in New Issue
Block a user