[9386] Store some config values in Rate emun.

This commit is contained in:
AlexDereka 2010-02-15 00:16:35 +03:00
parent 6e5b74e0ca
commit 5368751c13
33 changed files with 163 additions and 164 deletions

View file

@ -805,7 +805,7 @@ void SpellMgr::LoadSpellTargetPositions()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
@ -893,7 +893,7 @@ void SpellMgr::LoadSpellProcEvents()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
uint32 customProc = 0;
do
{
@ -985,7 +985,7 @@ void SpellMgr::LoadSpellProcItemEnchant()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
@ -1050,7 +1050,7 @@ void SpellMgr::LoadSpellBonusess()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
Field *fields = result->Fetch();
@ -1182,7 +1182,7 @@ void SpellMgr::LoadSpellElixirs()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
@ -1232,7 +1232,7 @@ void SpellMgr::LoadSpellThreats()
return;
}
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
@ -1923,7 +1923,7 @@ void SpellMgr::LoadSpellChains()
uint32 count = 0;
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
bar.step();
@ -2131,7 +2131,7 @@ void SpellMgr::LoadSpellLearnSpells()
uint32 count = 0;
barGoLink bar( result->GetRowCount() );
barGoLink bar( (int)result->GetRowCount() );
do
{
bar.step();