1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-29 07:37:45 +00:00

label now comes before getter in //gm teri

This commit is contained in:
Biscuit Boy 2018-07-01 21:31:26 +10:00
parent 9fd6a48ca3
commit 2b3de5f5e6

View file

@ -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;