1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-08 19:57:46 +00:00

Merge pull request #51 from AcedArmy/master

Fixed a Typo From HP Command saying TP Instead
This commit is contained in:
SapphireMordred 2017-08-14 20:00:04 +02:00 committed by GitHub
commit 792879e17e

View file

@ -237,7 +237,7 @@ void Core::Network::GameConnection::gm1Handler( Core::Network::Packets::GamePack
case GmCommand::Hp: case GmCommand::Hp:
{ {
targetPlayer->setHp( param1 ); targetPlayer->setHp( param1 );
pPlayer->sendNotice( "Tp for " + targetPlayer->getName() + " was set to " + std::to_string( param1 ) ); pPlayer->sendNotice( "Hp for " + targetPlayer->getName() + " was set to " + std::to_string( param1 ) );
break; break;
} }
case GmCommand::Mp: case GmCommand::Mp: