Core: Whitespace cleanup

This commit is contained in:
Vincent-Michael
2015-11-07 20:01:35 +01:00
parent ff9001ce1d
commit 7d5e7102cd
16 changed files with 42 additions and 42 deletions

View File

@@ -210,7 +210,7 @@ bool CanCreatePerfectItem(Player* player, uint32 spellId, float &perfectCreateCh
// lack of entry means no perfection proc possible
if (!thisEntry)
return false;
// if you don't have the spell needed, then no procs for you
if (!player->HasSpell(thisEntry->requiredSpecialization))
return false;
@@ -218,7 +218,7 @@ bool CanCreatePerfectItem(Player* player, uint32 spellId, float &perfectCreateCh
// set values as appropriate
perfectCreateChance = thisEntry->perfectCreateChance;
perfectItemType = thisEntry->perfectItemType;
// and tell the caller to start rolling the dice
return true;
}