From 7ef2440cef9f58b1b4bf41180f608ad6118ec898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=83=91=E4=BD=A9=E8=8C=B9?= Date: Thu, 15 Sep 2022 14:59:27 -0600 Subject: [PATCH] Pre-3.1 Ammo Stack sizes --- sql/world/base/ammo_stacks.sql | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 sql/world/base/ammo_stacks.sql diff --git a/sql/world/base/ammo_stacks.sql b/sql/world/base/ammo_stacks.sql new file mode 100644 index 0000000..ddcba0f --- /dev/null +++ b/sql/world/base/ammo_stacks.sql @@ -0,0 +1,2 @@ +/* In 3.1 all ammo was changed to stack to 1000. This reduced the usefulness of quivers and ammo pouches, so it is more than just a QoL change, unlike other stack size changes. */ +UPDATE `item_template` SET `stackable` = 200 WHERE `stackable` = 1000 AND `InventoryType` = 24;