mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
Core/Warden: Removed implementation not compatible with modern client versions (#30491)
This commit is contained in:
@@ -3827,7 +3827,8 @@ INSERT INTO `updates` VALUES
|
||||
('2025_08_19_00_characters.sql','EC197D88883CDA2B885675FE096DD56CCB143608','ARCHIVED','2025-08-19 01:03:26',0),
|
||||
('2025_09_09_00_characters.sql','CF3F0738623248620204175B049AAF0833262222','ARCHIVED','2025-09-09 14:11:21',0),
|
||||
('2025_10_10_00_characters.sql','F1EF875805AF1E87A413387F5449FE37D5205E94','ARCHIVED','2025-10-09 23:58:44',0),
|
||||
('2025_10_29_00_characters.sql','DC6A5D66E866352AC243869B627D282EE6A8B4F2','ARCHIVED','2025-10-29 06:57:00',0);
|
||||
('2025_10_29_00_characters.sql','DC6A5D66E866352AC243869B627D282EE6A8B4F2','ARCHIVED','2025-10-29 06:57:00',0),
|
||||
('2025_11_25_00_characters.sql','A0C04B2404B1832421402F78436DDC4AA18EBAD8','RELEASED','2025-11-25 22:28:32',0);
|
||||
/*!40000 ALTER TABLE `updates` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
@@ -3863,29 +3864,6 @@ INSERT INTO `updates_include` VALUES
|
||||
/*!40000 ALTER TABLE `updates_include` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `warden_action`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `warden_action`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `warden_action` (
|
||||
`wardenId` smallint unsigned NOT NULL,
|
||||
`action` tinyint unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`wardenId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `warden_action`
|
||||
--
|
||||
|
||||
LOCK TABLES `warden_action` WRITE;
|
||||
/*!40000 ALTER TABLE `warden_action` DISABLE KEYS */;
|
||||
/*!40000 ALTER TABLE `warden_action` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `world_state_value`
|
||||
--
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
DROP TABLE IF EXISTS `warden_action`;
|
||||
2
sql/updates/world/master/2025_11_25_01_world.sql
Normal file
2
sql/updates/world/master/2025_11_25_01_world.sql
Normal file
@@ -0,0 +1,2 @@
|
||||
DROP TABLE IF EXISTS `warden_checks`;
|
||||
DELETE FROM `command` WHERE `name`= 'debug warden force';
|
||||
Reference in New Issue
Block a user