You've already forked Arcturus-Morningstar-Extended
mirror of
https://github.com/duckietm/Arcturus-Morningstar-Extended.git
synced 2026-06-20 07:26:18 +00:00
🆙 update to 4.0.3
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user