You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-19 23:16:19 +00:00
19 lines
634 B
SQL
19 lines
634 B
SQL
SET NAMES utf8mb4;
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
-- =====================================================
|
|
-- Update 4.0.2-beta to 4.0.3-beta
|
|
-- =====================================================
|
|
|
|
INSERT INTO `emulator_settings` (`key`, `value`) VALUES
|
|
-- Maximum pending flood-fill tasks in the executor queue
|
|
-- Prevents memory leaks from rapid tile locking
|
|
('hotel.banzai.fill.max_queue', '50'),
|
|
|
|
-- Minimum interval (ms) between flood-fill calculations per game
|
|
-- Prevents errors via rapid wired triggering
|
|
('hotel.banzai.fill.cooldown_ms', '100')
|
|
ON DUPLICATE KEY UPDATE `value` = VALUES(`value`);
|
|
|
|
SET FOREIGN_KEY_CHECKS = 1;
|