Remove unused maturity guard subsystem (#3900)

## About The Pull Request

Removes an unused skyrat subsystem that asked players for their DOB on
first connection, we are whitelist-only and do vettings manually over
discord so there's no need for this and it has never been enabled
anyways

## Why It's Good For The Game

Remove unused subsystem and dead code

## Proof Of Testing

It works no runtimes

## Changelog

No player facing changes
This commit is contained in:
Roxy
2025-05-26 15:52:53 -04:00
committed by GitHub
parent c460d88581
commit 77f91e43c9
10 changed files with 0 additions and 488 deletions

View File

@@ -10,21 +10,6 @@
--
-- Table structure for table `player_dob`.
--
DROP TABLE IF EXISTS `player_dob`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `player_dob` (
`ckey` VARCHAR(32) NOT NULL,
`dob_year` smallint(5) NOT NULL,
`dob_month` smallint(5) NOT NULL,
PRIMARY KEY (`ckey`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Table structure for table `player_rank`.
--