From 508ecec6ea497edfcd1c034fdaf6a6476640074a Mon Sep 17 00:00:00 2001 From: Alex King <89047260+Kinglykrab@users.noreply.github.com> Date: Mon, 23 Oct 2023 17:19:30 -0400 Subject: [PATCH] [Bug Fix] Fix Bot Starting Items SQL (#3649) --- common/database/database_update_manifest_bots.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/database/database_update_manifest_bots.cpp b/common/database/database_update_manifest_bots.cpp index 8e20f8a4c..8f118e47c 100644 --- a/common/database/database_update_manifest_bots.cpp +++ b/common/database/database_update_manifest_bots.cpp @@ -65,8 +65,8 @@ SET FOREIGN_KEY_CHECKS = 1; .version = 9040, .description = "2023_11_16_bot_starting_items.sql", .check = "SHOW TABLES LIKE 'bot_starting_items'", - .condition = "", - .match = "empty", + .condition = "empty", + .match = "", .sql = R"( CREATE TABLE `bot_starting_items` ( `id` int(11) UNSIGNED NOT NULL AUTO_INCREMENT,