mirror of
https://github.com/mangosfour/server.git
synced 2025-12-17 07:37:03 +00:00
[10851] Small function order in sources update.
This commit is contained in:
parent
92ce21d009
commit
76a6e54e10
2 changed files with 9 additions and 9 deletions
|
|
@ -566,6 +566,14 @@ bool ChatHandler::HandleReloadSpellAreaCommand(char* /*args*/)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ChatHandler::HandleReloadSpellBonusesCommand(char* /*args*/)
|
||||||
|
{
|
||||||
|
sLog.outString( "Re-Loading Spell Bonus Data..." );
|
||||||
|
sSpellMgr.LoadSpellBonuses();
|
||||||
|
SendGlobalSysMessage("DB table `spell_bonus_data` (spell damage/healing coefficients) reloaded.");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
bool ChatHandler::HandleReloadSpellChainCommand(char* /*args*/)
|
bool ChatHandler::HandleReloadSpellChainCommand(char* /*args*/)
|
||||||
{
|
{
|
||||||
sLog.outString( "Re-Loading Spell Chain Data... " );
|
sLog.outString( "Re-Loading Spell Chain Data... " );
|
||||||
|
|
@ -598,14 +606,6 @@ bool ChatHandler::HandleReloadSpellProcEventCommand(char* /*args*/)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool ChatHandler::HandleReloadSpellBonusesCommand(char* /*args*/)
|
|
||||||
{
|
|
||||||
sLog.outString( "Re-Loading Spell Bonus Data..." );
|
|
||||||
sSpellMgr.LoadSpellBonuses();
|
|
||||||
SendGlobalSysMessage("DB table `spell_bonus_data` (spell damage/healing coefficients) reloaded.");
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool ChatHandler::HandleReloadSpellProcItemEnchantCommand(char* /*args*/)
|
bool ChatHandler::HandleReloadSpellProcItemEnchantCommand(char* /*args*/)
|
||||||
{
|
{
|
||||||
sLog.outString( "Re-Loading Spell Proc Item Enchant..." );
|
sLog.outString( "Re-Loading Spell Proc Item Enchant..." );
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10850"
|
#define REVISION_NR "10851"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue