From ec40b3dc698766307d283c1a1b39a180ea276297 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sat, 8 Sep 2018 00:11:31 -0400 Subject: [PATCH] Fix bots --- zone/bot.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/bot.cpp b/zone/bot.cpp index 8ba9ea36c..a5dd4aa41 100644 --- a/zone/bot.cpp +++ b/zone/bot.cpp @@ -7022,7 +7022,7 @@ void Bot::CalcRestState() { } RestRegenHP = 6 * (GetMaxHP() / zone->newzone_data.FastRegenHP); - RestRegenMana = 6 * (GetMaxMana() / zone->newzone_data.FastRegenMana)); + RestRegenMana = 6 * (GetMaxMana() / zone->newzone_data.FastRegenMana); RestRegenEndurance = 6 * (GetMaxEndurance() / zone->newzone_data.FastRegenEndurance); }