diff --git a/src/game/Level2.cpp b/src/game/Level2.cpp index 15040fb17..ff13a0a0a 100644 --- a/src/game/Level2.cpp +++ b/src/game/Level2.cpp @@ -4806,10 +4806,10 @@ bool ChatHandler::HandlePoolInfoCommand(char* args) { PoolTemplateData const& mother_template = sPoolMgr.GetPoolTemplate(mother_pool_id); if (m_session) - PSendSysMessage(LANG_POOL_INFO_HEADER_CHAT, pool_id, mother_pool_id, mother_pool_id, mother_template.description.c_str(), + PSendSysMessage(LANG_POOL_INFO_HEADER_CHAT, pool_id, mother_pool_id, mother_pool_id, mother_template.description.c_str(), pool_template.AutoSpawn, pool_template.MaxLimit); else - PSendSysMessage(LANG_POOL_INFO_HEADER_CONSOLE, pool_id, mother_pool_id, mother_template.description.c_str(), + PSendSysMessage(LANG_POOL_INFO_HEADER_CONSOLE, pool_id, mother_pool_id, mother_template.description.c_str(), pool_template.AutoSpawn, pool_template.MaxLimit); } @@ -4919,12 +4919,12 @@ bool ChatHandler::HandlePoolInfoCommand(char* args) PoolTemplateData const& itr_template = sPoolMgr.GetPoolTemplate(itr->guid); char const* active = poolSpawns && poolSpawns->find(itr->guid) != poolSpawns->end() ? active_str.c_str() : ""; if (m_session) - PSendSysMessage(LANG_POOL_CHANCE_POOL_LIST_CHAT, itr->guid, + PSendSysMessage(LANG_POOL_CHANCE_POOL_LIST_CHAT, itr->guid, itr->guid, itr_template.description.c_str(), itr_template.AutoSpawn ? 1 : 0, itr_template.MaxLimit, sPoolMgr.GetPoolCreatures(itr->guid).size(), sPoolMgr.GetPoolGameObjects(itr->guid).size(), sPoolMgr.GetPoolPools(itr->guid).size(), itr->chance, active); else - PSendSysMessage(LANG_POOL_CHANCE_POOL_LIST_CONSOLE, itr->guid, + PSendSysMessage(LANG_POOL_CHANCE_POOL_LIST_CONSOLE, itr->guid, itr_template.description.c_str(), itr_template.AutoSpawn ? 1 : 0, itr_template.MaxLimit, sPoolMgr.GetPoolCreatures(itr->guid).size(), sPoolMgr.GetPoolGameObjects(itr->guid).size(), sPoolMgr.GetPoolPools(itr->guid).size(), itr->chance, active); @@ -4940,12 +4940,12 @@ bool ChatHandler::HandlePoolInfoCommand(char* args) PoolTemplateData const& itr_template = sPoolMgr.GetPoolTemplate(itr->guid); char const* active = poolSpawns && poolSpawns->find(itr->guid) != poolSpawns->end() ? active_str.c_str() : ""; if (m_session) - PSendSysMessage(LANG_POOL_POOL_LIST_CHAT, itr->guid, + PSendSysMessage(LANG_POOL_POOL_LIST_CHAT, itr->guid, itr->guid, itr_template.description.c_str(), itr_template.AutoSpawn ? 1 : 0, itr_template.MaxLimit, sPoolMgr.GetPoolCreatures(itr->guid).size(), sPoolMgr.GetPoolGameObjects(itr->guid).size(), sPoolMgr.GetPoolPools(itr->guid).size(), active); else - PSendSysMessage(LANG_POOL_POOL_LIST_CONSOLE, itr->guid, + PSendSysMessage(LANG_POOL_POOL_LIST_CONSOLE, itr->guid, itr_template.description.c_str(), itr_template.AutoSpawn ? 1 : 0, itr_template.MaxLimit, sPoolMgr.GetPoolCreatures(itr->guid).size(), sPoolMgr.GetPoolGameObjects(itr->guid).size(), sPoolMgr.GetPoolPools(itr->guid).size(), active); diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index 6339172e3..016b34307 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "11185" + #define REVISION_NR "11186" #endif // __REVISION_NR_H__