diff --git a/zone/bot_database.cpp b/zone/bot_database.cpp index 3a07b2649..dcc5ff89b 100644 --- a/zone/bot_database.cpp +++ b/zone/bot_database.cpp @@ -828,7 +828,7 @@ bool BotDatabase::LoadTimers(Bot* b) BotTimer_Struct t{ }; for (const auto& e : l) { - if (t.timer_value < (Timer::GetCurrentTime() + t.recast_time)) { + if (e.timer_value < (Timer::GetCurrentTime() + e.recast_time)) { t.timer_id = e.timer_id; t.timer_value = e.timer_value; t.recast_time = e.recast_time;