feat(Core/Character): Implement profanity_name (#15156)

This commit is contained in:
Kitzunu 2023-03-04 21:43:14 +01:00 committed by GitHub
parent 6e61f38454
commit 9eb4b3a336
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
16 changed files with 139 additions and 12 deletions

View file

@ -0,0 +1,6 @@
--
DROP TABLE IF EXISTS `profanity_name`;
CREATE TABLE `profanity_name` (
`name` VARCHAR(12) NOT NULL,
PRIMARY KEY (`name`)
) ENGINE=InnoDB;

View file

@ -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');