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:
|
case GmCommand::TeriInfo:
|
||||||
{
|
{
|
||||||
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() ) +
|
||||||
pCurrentZone->getName() + "\nInternalName: " +
|
"\nName: " + pCurrentZone->getName() +
|
||||||
pCurrentZone->getInternalName() + "\nGuId: " +
|
"\nInternalName: " + pCurrentZone->getInternalName() +
|
||||||
std::to_string( pCurrentZone->getGuId() ) + "\nPopCount: " +
|
"\nGuId: " + std::to_string( pCurrentZone->getGuId() ) +
|
||||||
std::to_string( pCurrentZone->getPopCount() ) +
|
"\nPopCount: " + 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;
|
||||||
|
|
Loading…
Add table
Reference in a new issue