From f181a895114940a7bfcb9ca920c450f72c676668 Mon Sep 17 00:00:00 2001 From: Azcobu <81782124+Azcobu@users.noreply.github.com> Date: Mon, 4 Oct 2021 21:24:45 +1030 Subject: [PATCH] fix(DB/creature_template): Enable swimming for Tooga (#8116) --- .../sql/updates/pending_db_world/rev_1632745513721786346.sql | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 data/sql/updates/pending_db_world/rev_1632745513721786346.sql diff --git a/data/sql/updates/pending_db_world/rev_1632745513721786346.sql b/data/sql/updates/pending_db_world/rev_1632745513721786346.sql new file mode 100644 index 000000000..efcf18c6a --- /dev/null +++ b/data/sql/updates/pending_db_world/rev_1632745513721786346.sql @@ -0,0 +1,5 @@ +INSERT INTO `version_db_world` (`sql_rev`) VALUES ('1632745513721786346'); + +-- Enable swimming for Tooga +UPDATE `creature_template` SET `InhabitType` = `InhabitType`|1|2 WHERE `entry` = 5955; +