Gitea canonical URLs and CI repo guard; stack gems and trade goods to 200
Fractured launcher CI / electron-launcher-windows (push) Has been cancelled
Fractured launcher CI / electron-launcher-linux (push) Has been cancelled

- 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:
Docker Build
2026-05-13 12:04:30 -04:00
parent 6a1f8eec89
commit c3f679ab74
10 changed files with 40 additions and 18 deletions
@@ -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;