mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-12 01:11:29 +00:00
Fix for the slow mitigation spam messages Converted value from FLOAT to INT Use SQL to update your npc_types table
8 lines
205 B
SQL
8 lines
205 B
SQL
-- Convert all values from FLOAT to INT
|
|
UPDATE npc_types SET slow_mitigation = slow_mitigation * 100;
|
|
|
|
-- Change variable type from FLOAT TO INT
|
|
ALTER TABLE npc_types MODIFY slow_mitigation smallint(4);
|
|
|
|
|