From 262bcf5c2903046a5bc80d23629e58b770978f12 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Fri, 10 Mar 2017 19:16:43 -0500 Subject: [PATCH] Fix merc attack delay --- zone/zonedb.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/zonedb.cpp b/zone/zonedb.cpp index ec56b8df8..a36042610 100644 --- a/zone/zonedb.cpp +++ b/zone/zonedb.cpp @@ -2261,7 +2261,7 @@ const NPCType* ZoneDatabase::GetMercType(uint32 id, uint16 raceid, uint32 client tmpNPCType->gender = atoi(row[7]); tmpNPCType->texture = atoi(row[8]); tmpNPCType->helmtexture = atoi(row[9]); - tmpNPCType->attack_delay = atoi(row[10]); + tmpNPCType->attack_delay = atoi(row[10]) * 100; // TODO: fix DB tmpNPCType->STR = atoi(row[11]); tmpNPCType->STA = atoi(row[12]); tmpNPCType->DEX = atoi(row[13]);