From 743b61ae1319a780798ea00846c6fb2ed047fea5 Mon Sep 17 00:00:00 2001 From: Alex Date: Wed, 16 Jun 2021 11:05:30 -0400 Subject: [PATCH] [Typo] IsDisciplineBuff not IsDisciplineBuf (#1410) --- zone/mob.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/zone/mob.cpp b/zone/mob.cpp index fafcce2bc..ecae310b9 100644 --- a/zone/mob.cpp +++ b/zone/mob.cpp @@ -5612,7 +5612,7 @@ int32 Mob::GetSpellStat(uint32 spell_id, const char *identifier, uint8 slot) else if (id == "bonushate") {return spells[spell_id].bonushate; } else if (id == "EndurCost") {return spells[spell_id].EndurCost; } else if (id == "EndurTimerIndex") {return spells[spell_id].EndurTimerIndex; } - else if (id == "IsDisciplineBuf") {return spells[spell_id].IsDisciplineBuff; } + else if (id == "IsDisciplineBuff") {return spells[spell_id].IsDisciplineBuff; } else if (id == "HateAdded") {return spells[spell_id].HateAdded; } else if (id == "EndurUpkeep") {return spells[spell_id].EndurUpkeep; } else if (id == "numhitstype") {return spells[spell_id].numhitstype; }