mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-24 13:47:46 +00:00
Added Zone GuId to gm teri_info and fixed spacing
This commit is contained in:
parent
3c65d76114
commit
eb0996ee78
1 changed files with 4 additions and 3 deletions
|
@ -467,10 +467,11 @@ 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() ) ) );
|
||||
"\nCurrentWeather: " + std::to_string( static_cast< uint8_t >( pCurrentZone->getCurrentWeather() ) ) +
|
||||
"\nNextWeather: " + std::to_string( static_cast< uint8_t >( pCurrentZone->getNextWeather() ) ) );
|
||||
break;
|
||||
}
|
||||
case GmCommand::Jump:
|
||||
|
|
Loading…
Add table
Reference in a new issue