mirror of
https://github.com/mangosfour/server.git
synced 2025-12-14 07:37:01 +00:00
[9356] Correct output in case negative value in one error message.
Signed-off-by: NoFantasy <nofantasy@nf.no>
This commit is contained in:
parent
6f2bd19b43
commit
066daaecfd
2 changed files with 2 additions and 2 deletions
|
|
@ -3786,7 +3786,7 @@ void ObjectMgr::LoadQuests()
|
||||||
}
|
}
|
||||||
else if (qinfo->RewRepValue[j] != 0)
|
else if (qinfo->RewRepValue[j] != 0)
|
||||||
{
|
{
|
||||||
sLog.outErrorDb("Quest %u has `RewRepFaction%d` = 0 but `RewRepValue%d` = %u.",
|
sLog.outErrorDb("Quest %u has `RewRepFaction%d` = 0 but `RewRepValue%d` = %i.",
|
||||||
qinfo->GetQuestId(),j+1,j+1,qinfo->RewRepValue[j]);
|
qinfo->GetQuestId(),j+1,j+1,qinfo->RewRepValue[j]);
|
||||||
// no changes, quest ignore this data
|
// no changes, quest ignore this data
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "9355"
|
#define REVISION_NR "9356"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue