mirror of
https://github.com/mangosfour/server.git
synced 2025-12-19 13:37:01 +00:00
[8043] Fixed typo in LoadSkillDiscoveryTable()
This commit is contained in:
parent
fe88960e09
commit
fada8301f5
2 changed files with 2 additions and 2 deletions
|
|
@ -54,7 +54,7 @@ void LoadSkillDiscoveryTable()
|
|||
// 0 1 2 3
|
||||
QueryResult *result = WorldDatabase.Query("SELECT spellId, reqSpell, reqSkillValue, chance FROM skill_discovery_template");
|
||||
|
||||
if (result)
|
||||
if (!result)
|
||||
{
|
||||
sLog.outString();
|
||||
sLog.outString( ">> Loaded 0 skill discovery definitions. DB table `skill_discovery_template` is empty." );
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
#ifndef __REVISION_NR_H__
|
||||
#define __REVISION_NR_H__
|
||||
#define REVISION_NR "8042"
|
||||
#define REVISION_NR "8043"
|
||||
#endif // __REVISION_NR_H__
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue