mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 05:57:45 +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();
|
auto pCurrentZone = player.getCurrentZone();
|
||||||
player.sendNotice( "ZoneId: " + std::to_string( player.getZoneId() ) + "\nName: " +
|
player.sendNotice( "ZoneId: " + std::to_string( player.getZoneId() ) + "\nName: " +
|
||||||
pCurrentZone->getName() + "\nInternalName: " +
|
pCurrentZone->getName() + "\nInternalName: " +
|
||||||
pCurrentZone->getInternalName() + "\nPopCount: " +
|
pCurrentZone->getInternalName() + "\nGuId: " +
|
||||||
|
std::to_string( pCurrentZone->getGuId() ) + "\nPopCount: " +
|
||||||
std::to_string( pCurrentZone->getPopCount() ) +
|
std::to_string( pCurrentZone->getPopCount() ) +
|
||||||
"\nCurrentWeather:" + std::to_string( static_cast< uint8_t >( pCurrentZone->getCurrentWeather() ) ) +
|
"\nCurrentWeather: " + std::to_string( static_cast< uint8_t >( pCurrentZone->getCurrentWeather() ) ) +
|
||||||
"\nNextWeather:" + std::to_string( static_cast< uint8_t >( pCurrentZone->getNextWeather() ) ) );
|
"\nNextWeather: " + std::to_string( static_cast< uint8_t >( pCurrentZone->getNextWeather() ) ) );
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
case GmCommand::Jump:
|
case GmCommand::Jump:
|
||||||
|
|
Loading…
Add table
Reference in a new issue