Core/Misc: Better description for few logs

(cherry picked from commit 9a25c0e7e0)
This commit is contained in:
Aokromes
2016-07-02 19:31:48 +02:00
committed by joschiwald
parent 2bb0f565c4
commit f74f32d242

View File

@@ -6526,7 +6526,7 @@ uint32 ObjectMgr::GenerateAuctionID()
{
if (_auctionId >= 0xFFFFFFFE)
{
TC_LOG_ERROR("misc", "Auctions ids overflow!! Can't continue, shutting down server. ");
TC_LOG_ERROR("misc", "Auctions ids overflow!! Can't continue, shutting down server. Search on forum for TCE00007 for more info. ");
World::StopNow(ERROR_EXIT_CODE);
}
return _auctionId++;
@@ -6536,7 +6536,7 @@ uint64 ObjectMgr::GenerateEquipmentSetGuid()
{
if (_equipmentSetGuid >= uint64(0xFFFFFFFFFFFFFFFELL))
{
TC_LOG_ERROR("misc", "EquipmentSet guid overflow!! Can't continue, shutting down server. ");
TC_LOG_ERROR("misc", "EquipmentSet guid overflow!! Can't continue, shutting down server. Search on forum for TCE00007 for more info. ");
World::StopNow(ERROR_EXIT_CODE);
}
return _equipmentSetGuid++;
@@ -6546,7 +6546,7 @@ uint32 ObjectMgr::GenerateMailID()
{
if (_mailId >= 0xFFFFFFFE)
{
TC_LOG_ERROR("misc", "Mail ids overflow!! Can't continue, shutting down server. ");
TC_LOG_ERROR("misc", "Mail ids overflow!! Can't continue, shutting down server. Search on forum for TCE00007 for more info. ");
World::StopNow(ERROR_EXIT_CODE);
}
return _mailId++;
@@ -6556,7 +6556,7 @@ uint32 ObjectMgr::GeneratePetNumber()
{
if (_hiPetNumber >= 0xFFFFFFFE)
{
TC_LOG_ERROR("misc", "_hiPetNumber Id overflow!! Can't continue, shutting down server. ");
TC_LOG_ERROR("misc", "_hiPetNumber Id overflow!! Can't continue, shutting down server. Search on forum for TCE00007 for more info.");
World::StopNow(ERROR_EXIT_CODE);
}
return _hiPetNumber++;
@@ -6576,7 +6576,7 @@ uint64 ObjectMgr::GenerateCreatureSpawnId()
{
if (_creatureSpawnId >= uint64(0xFFFFFFFFFFFFFFFELL))
{
TC_LOG_ERROR("misc", "Creature spawn id overflow!! Can't continue, shutting down server. ");
TC_LOG_ERROR("misc", "Creature spawn id overflow!! Can't continue, shutting down server. Search on forum for TCE00007 for more info.");
World::StopNow(ERROR_EXIT_CODE);
}
return _creatureSpawnId++;
@@ -6586,7 +6586,7 @@ uint64 ObjectMgr::GenerateGameObjectSpawnId()
{
if (_gameObjectSpawnId >= uint64(0xFFFFFFFFFFFFFFFELL))
{
TC_LOG_ERROR("misc", "Creature spawn id overflow!! Can't continue, shutting down server. ");
TC_LOG_ERROR("misc", "Creature spawn id overflow!! Can't continue, shutting down server. Search on forum for TCE00007 for more info. ");
World::StopNow(ERROR_EXIT_CODE);
}
return _gameObjectSpawnId++;