mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2025-12-21 15:42:35 +00:00
changes: Refactored footstep sounds to use less operations & only calculate for human-types. Improved the logging detail of the lighting profiler. Fixed some shuttle corners that weren't correctly working with parallax space. Converted get_turf() into a compiler macro. Solars are now dynamically lit. Silenced warning from lighting overlays pooling themselves when updated on a space tile. Fixed a bug where securing a girder was instant when it was supposed to have a delay.
19 lines
780 B
SQL
19 lines
780 B
SQL
-- These are tables used only for debugging/profiling.
|
|
-- They are not needed for normal server operation.
|
|
|
|
CREATE TABLE `ss13dbg_lighting` (
|
|
`id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT,
|
|
`time` INT(11) UNSIGNED NULL DEFAULT NULL COMMENT 'World time (in ticks)',
|
|
`tick_usage` DOUBLE UNSIGNED NULL DEFAULT NULL,
|
|
`type` VARCHAR(32) NULL DEFAULT NULL COMMENT 'The type of the update.' COLLATE 'latin1_bin',
|
|
`name` VARCHAR(50) NULL DEFAULT NULL COMMENT 'The callee\'s name.' COLLATE 'latin1_bin',
|
|
`loc_name` VARCHAR(50) NULL DEFAULT NULL COMMENT 'The callee\'s location.' COLLATE 'latin1_bin',
|
|
`x` SMALLINT(6) NULL DEFAULT NULL,
|
|
`y` SMALLINT(6) NULL DEFAULT NULL,
|
|
`z` SMALLINT(6) NULL DEFAULT NULL,
|
|
PRIMARY KEY (`id`)
|
|
)
|
|
COLLATE='latin1_bin'
|
|
ENGINE=MEMORY
|
|
ROW_FORMAT=FIXED;
|