From 4145d3d67cd9421632ca99161bfad11e1f188d6e Mon Sep 17 00:00:00 2001 From: Page- Date: Thu, 28 Jan 2021 09:38:20 +0000 Subject: [PATCH] Classify thief as a trader and bump from 160 to 170 holds (#978) --- db/patches/V1_6_65_11__thief_buff.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 db/patches/V1_6_65_11__thief_buff.sql diff --git a/db/patches/V1_6_65_11__thief_buff.sql b/db/patches/V1_6_65_11__thief_buff.sql new file mode 100644 index 000000000..7f4167a1b --- /dev/null +++ b/db/patches/V1_6_65_11__thief_buff.sql @@ -0,0 +1,4 @@ +-- Thief to 170 holds +UPDATE ship_type_support_hardware SET max_amount = 170 WHERE ship_type_id = 23 AND hardware_type_id = 3; +-- Thief to trader class +UPDATE ship_type st SET st.ship_class_id = 2 WHERE st.ship_type_id = 23;