From 2db6464d1423fc396dd27fa4f096d772e9ff3325 Mon Sep 17 00:00:00 2001 From: "Michael Cook (mackal)" Date: Sat, 28 Jan 2017 22:46:02 -0500 Subject: [PATCH] Fix last commit --- zone/mob.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/zone/mob.cpp b/zone/mob.cpp index 63f1d82ab..41add6490 100644 --- a/zone/mob.cpp +++ b/zone/mob.cpp @@ -1501,9 +1501,9 @@ void Mob::ShowStats(Client* client) client->Message(0, " AggroRange: %1.0f AssistRange: %1.0f", GetAggroRange(), GetAssistRange()); } - client->Message(0, " compute_tohit: %i TotalToHit: %i", n->compute_tohit(EQEmu::skills::SkillHandtoHand), n->GetTotalToHit(EQEmu::skills::SkillHandtoHand, 0)); - client->Message(0, " compute_defense: %i TotalDefense: %i", n->compute_defense(), n->GetTotalDefense()); - client->Message(0, " offense: %i mitigation ac: %i", n->offense(EQEmu::skills::SkillHandtoHand), n->GetMitigationAC()); + client->Message(0, " compute_tohit: %i TotalToHit: %i", compute_tohit(EQEmu::skills::SkillHandtoHand), GetTotalToHit(EQEmu::skills::SkillHandtoHand, 0)); + client->Message(0, " compute_defense: %i TotalDefense: %i", compute_defense(), GetTotalDefense()); + client->Message(0, " offense: %i mitigation ac: %i", offense(EQEmu::skills::SkillHandtoHand), GetMitigationAC()); } }