1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-25 22:17:45 +00:00

Fixed a Typo From HP Command saying TP Instead

Fixed a Typo from HP GM Command saying TP was set Instead of HP
This commit is contained in:
Biscuit Boy 2017-08-15 01:49:02 +10:00 committed by GitHub
parent df98c09179
commit 3d159eb65c

View file

@ -237,7 +237,7 @@ void Core::Network::GameConnection::gm1Handler( Core::Network::Packets::GamePack
case GmCommand::Hp:
{
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;
}
case GmCommand::Mp: