Gitea canonical URLs and CI repo guard; stack gems and trade goods to 200
- Point docs, clone examples, launcher package/repo defaults, and GitHub Actions repository guards at HighSocietyRaiding/Fractured (Gitea). - Add db_world update: stackable 200 for item classes 3 (gems), 7 (trade goods), and 5 (reagents) where stack size was below 200. Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
-- DB update 2026_05_06_00 -> 2026_05_13_00
|
||||
-- Fractured: raise stack size to 200 for socketable gems (item class 3), all Trade Goods
|
||||
-- (class 7: cloth, leather, ore/bar, herbs, parts, elementals, dusts, etc.), and Reagents
|
||||
-- (class 5). Rows with ItemLimitCategory or maxcount still obey those limits when looting/carrying.
|
||||
|
||||
UPDATE `item_template` SET `stackable` = 200
|
||||
WHERE `class` = 3
|
||||
AND `stackable` > 0
|
||||
AND `stackable` < 200
|
||||
AND `stackable` <> 2147483647;
|
||||
|
||||
UPDATE `item_template` SET `stackable` = 200
|
||||
WHERE `class` = 7
|
||||
AND `stackable` > 0
|
||||
AND `stackable` < 200
|
||||
AND `stackable` <> 2147483647;
|
||||
|
||||
UPDATE `item_template` SET `stackable` = 200
|
||||
WHERE `class` = 5
|
||||
AND `stackable` > 0
|
||||
AND `stackable` < 200
|
||||
AND `stackable` <> 2147483647;
|
||||
Reference in New Issue
Block a user