mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-19 03:45:43 +00:00
feat(Core/Character): Implement profanity_name (#15156)
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
--
|
||||
DROP TABLE IF EXISTS `profanity_name`;
|
||||
CREATE TABLE `profanity_name` (
|
||||
`name` VARCHAR(12) NOT NULL,
|
||||
PRIMARY KEY (`name`)
|
||||
) ENGINE=InnoDB;
|
||||
@@ -0,0 +1,4 @@
|
||||
--
|
||||
DELETE FROM `acore_string` WHERE `entry` = 187;
|
||||
INSERT INTO `acore_string` (`entry`, `content_default`) VALUE
|
||||
(187, 'This name is profane, choose another one');
|
||||
Reference in New Issue
Block a user