mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-07-10 06:34:45 +01:00
Allows you to mute soundfiles from specific admins (#20576)
* Allows you to mute soundfiles from specific admins * me no spello * Wording tweak
This commit is contained in:
@@ -288,6 +288,7 @@ CREATE TABLE `player` (
|
||||
`colourblind_mode` VARCHAR(48) NOT NULL DEFAULT 'None' COLLATE 'utf8mb4_general_ci',
|
||||
`keybindings` LONGTEXT COLLATE 'utf8mb4_unicode_ci' DEFAULT NULL,
|
||||
`server_region` VARCHAR(32) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
|
||||
`muted_adminsounds_ckeys` MEDIUMTEXT NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
|
||||
PRIMARY KEY (`id`),
|
||||
UNIQUE KEY `ckey` (`ckey`),
|
||||
KEY `lastseen` (`lastseen`),
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
# Updating SQL from 45 to 46 -AffectedArc07
|
||||
# Adds a way to mute soundfiles from specific admins
|
||||
ALTER TABLE `player`
|
||||
ADD COLUMN `muted_adminsounds_ckeys` MEDIUMTEXT NULL DEFAULT NULL AFTER `server_region`;
|
||||
Reference in New Issue
Block a user