From 1de0c2762961a7f5ca48b3a858edfbb0755c6056 Mon Sep 17 00:00:00 2001 From: Kinglykrab <89047260+Kinglykrab@users.noreply.github.com> Date: Wed, 25 May 2022 13:08:28 -0400 Subject: [PATCH] [Bug Fix] Fix HP Regen Per Second. (#2206) `hp_regen_rate` was being used for `hp_regen_per_second` incorrectly. --- zone/zonedb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/zonedb.cpp b/zone/zonedb.cpp index 273898b1b..c87dc1e5f 100755 --- a/zone/zonedb.cpp +++ b/zone/zonedb.cpp @@ -2560,7 +2560,7 @@ const NPCType *ZoneDatabase::LoadNPCTypesData(uint32 npc_type_id, bool bulk_load t->always_aggro = n.always_aggro != 0; t->exp_mod = n.exp_mod; t->skip_auto_scale = false; // hardcoded here for now - t->hp_regen_per_second = n.hp_regen_rate; + t->hp_regen_per_second = n.hp_regen_per_second; // If NPC with duplicate NPC id already in table, // free item we attempted to add.