From ecfe147a6e0d93871dab1301efec6dc0219d961d Mon Sep 17 00:00:00 2001 From: dannuic Date: Sun, 3 May 2026 01:47:32 -0600 Subject: [PATCH] Added missing columns to merc bootstrap --- utils/sql/merc_tables_bootstrap.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/utils/sql/merc_tables_bootstrap.sql b/utils/sql/merc_tables_bootstrap.sql index 6b6345ebd..b127cba58 100644 --- a/utils/sql/merc_tables_bootstrap.sql +++ b/utils/sql/merc_tables_bootstrap.sql @@ -85,12 +85,13 @@ CREATE TABLE `merc_buffs` `HitCount` int(10) UNSIGNED NOT NULL DEFAULT 0, `MeleeRune` int(10) UNSIGNED NOT NULL DEFAULT 0, `MagicRune` int(10) UNSIGNED NOT NULL DEFAULT 0, - `dot_rune` int(10) NOT NULL DEFAULT 0, + `dot_rune` int(10) UNSIGNED NOT NULL DEFAULT 0, `caston_x` int(10) NOT NULL DEFAULT 0, `Persistent` tinyint(1) NOT NULL DEFAULT 0, `caston_y` int(10) NOT NULL DEFAULT 0, `caston_z` int(10) NOT NULL DEFAULT 0, `ExtraDIChance` int(10) NOT NULL DEFAULT 0, + `instrument_mod` int(10) UNSIGNED NOT NULL DEFAULT 10, PRIMARY KEY (`MercBuffId`) USING BTREE, INDEX `FK_mercbuff_1`(`MercId`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 1 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Compact;