1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 00:27:44 +00:00

Added Zone GuId to gm teri_info and fixed spacing

This commit is contained in:
Biscuit Boy 2018-04-22 00:50:04 +10:00
parent 333ec303bd
commit a9c3f67944

View file

@ -467,7 +467,8 @@ void Core::Network::GameConnection::gm1Handler( const Packets::GamePacket& inPac
auto pCurrentZone = player.getCurrentZone();
player.sendNotice( "ZoneId: " + std::to_string( player.getZoneId() ) + "\nName: " +
pCurrentZone->getName() + "\nInternalName: " +
pCurrentZone->getInternalName() + "\nPopCount: " +
pCurrentZone->getInternalName() + "\nGuId: " +
std::to_string( pCurrentZone->getGuId() ) + "\nPopCount: " +
std::to_string( pCurrentZone->getPopCount() ) +
"\nCurrentWeather: " + std::to_string( static_cast< uint8_t >( pCurrentZone->getCurrentWeather() ) ) +
"\nNextWeather: " + std::to_string( static_cast< uint8_t >( pCurrentZone->getNextWeather() ) ) );