diff --git a/zone/bot_database.cpp b/zone/bot_database.cpp index 09f49f292..f4dd96816 100644 --- a/zone/bot_database.cpp +++ b/zone/bot_database.cpp @@ -1022,10 +1022,7 @@ bool BotDatabase::DeleteTimers(const uint32 bot_id) return false; } - auto success = BotTimersRepository::DeleteWhere(database, fmt::format("bot_id = {}", bot_id)); - if (!success) { - return false; - } + BotTimersRepository::DeleteWhere(database, fmt::format("bot_id = {}", bot_id)); return true; }