mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-24 12:37:26 +01:00
Sets the default FPS to 63 (#17564)
* default FPS to 63 * SQL updates * smallint(4)
This commit is contained in:
@@ -277,7 +277,7 @@ CREATE TABLE `player` (
|
||||
`volume_mixer` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`lastchangelog` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '0',
|
||||
`exp` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||||
`clientfps` smallint(4) DEFAULT '0',
|
||||
`clientfps` smallint(4) DEFAULT '63',
|
||||
`atklog` smallint(4) DEFAULT '0',
|
||||
`fuid` bigint(20) DEFAULT NULL,
|
||||
`fupdate` smallint(4) DEFAULT '0',
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
# Updates DB from 34 to 35 -hal9000PR
|
||||
# Changes DB default for clientFPS to 63
|
||||
|
||||
ALTER TABLE `player` CHANGE COLUMN `clientfps` `clientfps` smallint(4) DEFAULT '63' AFTER `exp`;
|
||||
Reference in New Issue
Block a user