mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-28 23:27:45 +00:00
label now comes before getter in //gm teri
This commit is contained in:
parent
9fd6a48ca3
commit
2b3de5f5e6
1 changed files with 5 additions and 5 deletions
|
@ -465,11 +465,11 @@ void Core::Network::GameConnection::gm1Handler( const Packets::GamePacket& inPac
|
|||
case GmCommand::TeriInfo:
|
||||
{
|
||||
auto pCurrentZone = player.getCurrentZone();
|
||||
player.sendNotice( "ZoneId: " + std::to_string( player.getZoneId() ) + "\nName: " +
|
||||
pCurrentZone->getName() + "\nInternalName: " +
|
||||
pCurrentZone->getInternalName() + "\nGuId: " +
|
||||
std::to_string( pCurrentZone->getGuId() ) + "\nPopCount: " +
|
||||
std::to_string( pCurrentZone->getPopCount() ) +
|
||||
player.sendNotice( "ZoneId: " + std::to_string( player.getZoneId() ) +
|
||||
"\nName: " + pCurrentZone->getName() +
|
||||
"\nInternalName: " + 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() ) ) );
|
||||
break;
|
||||
|
|
Loading…
Add table
Reference in a new issue