From 042a0936bd7d2b8556ba95f214294fdeb1537b94 Mon Sep 17 00:00:00 2001 From: Gooyeth Date: Mon, 2 Apr 2018 16:38:02 -0600 Subject: [PATCH] adding braces --- src/server/game/Spells/SpellMgr.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/server/game/Spells/SpellMgr.cpp b/src/server/game/Spells/SpellMgr.cpp index 039eed76705..353f20079c9 100644 --- a/src/server/game/Spells/SpellMgr.cpp +++ b/src/server/game/Spells/SpellMgr.cpp @@ -2811,12 +2811,14 @@ void SpellMgr::LoadSpellInfoCustomAttributes() // add custom attribute to liquid auras for (LiquidTypeEntry const* liquid : sLiquidTypeStore) + { if (liquid->SpellId) { spellInfo = _GetSpellInfo(liquid->SpellId); if (spellInfo) spellInfo->AttributesCu |= SPELL_ATTR0_CU_LIQUID_AURA; } + } TC_LOG_INFO("server.loading", ">> Loaded SpellInfo custom attributes in %u ms", GetMSTimeDiffToNow(oldMSTime)); }