Dynamic slots (#36)

* Removed slots configuration

* feature: dynamic slots

* fixes + improvements

* edited core functionality

* added commands for slots management

* added commands english locale

Co-authored-by: d3rp-jsx <15928886+derp-jsx@users.noreply.github.com>
This commit is contained in:
Demetrio
2021-08-10 19:31:30 +02:00
committed by GitHub
parent 248b6e0b92
commit 52250d0d49
5 changed files with 65 additions and 6 deletions
+7
View File
@@ -0,0 +1,7 @@
CREATE TABLE `multicharacter_slots` (
`identifier` VARCHAR(60) NOT NULL DEFAULT '' COLLATE 'utf8mb4_unicode_ci',
`slots` INT(11) NOT NULL DEFAULT '1'
)
COLLATE='utf8mb4_unicode_ci'
ENGINE=InnoDB
;