mirror of
https://github.com/mangosfour/server.git
synced 2025-12-15 10:37:02 +00:00
[9384] Resore use uint64 instead time_t in query, some other fixes.
This commit is contained in:
parent
5beb853bc4
commit
f4c38044c4
6 changed files with 10 additions and 10 deletions
|
|
@ -2241,7 +2241,7 @@ void SpellMgr::LoadSpellScriptTarget()
|
|||
return;
|
||||
}
|
||||
|
||||
barGoLink bar(result->GetRowCount());
|
||||
barGoLink bar((int)result->GetRowCount());
|
||||
|
||||
do
|
||||
{
|
||||
|
|
@ -2379,7 +2379,7 @@ void SpellMgr::LoadSpellPetAuras()
|
|||
return;
|
||||
}
|
||||
|
||||
barGoLink bar( result->GetRowCount() );
|
||||
barGoLink bar( (int)result->GetRowCount() );
|
||||
|
||||
do
|
||||
{
|
||||
|
|
@ -2717,7 +2717,7 @@ void SpellMgr::LoadSpellAreas()
|
|||
return;
|
||||
}
|
||||
|
||||
barGoLink bar( result->GetRowCount() );
|
||||
barGoLink bar( (int)result->GetRowCount() );
|
||||
|
||||
do
|
||||
{
|
||||
|
|
@ -3042,7 +3042,7 @@ void SpellMgr::LoadSkillLineAbilityMap()
|
|||
{
|
||||
mSkillLineAbilityMap.clear();
|
||||
|
||||
barGoLink bar( sSkillLineAbilityStore.GetNumRows() );
|
||||
barGoLink bar( (int)sSkillLineAbilityStore.GetNumRows() );
|
||||
uint32 count = 0;
|
||||
|
||||
for (uint32 i = 0; i < sSkillLineAbilityStore.GetNumRows(); ++i)
|
||||
|
|
@ -3079,7 +3079,7 @@ void SpellMgr::CheckUsedSpells(char const* table)
|
|||
return;
|
||||
}
|
||||
|
||||
barGoLink bar( result->GetRowCount() );
|
||||
barGoLink bar( (int)result->GetRowCount() );
|
||||
|
||||
do
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue