1
0
Fork 0

Fix typo in message send when getting achievements (#5282)

This commit is contained in:
Bart Ribbers 2021-08-21 12:07:16 +02:00 committed by GitHub
parent 503b3c220f
commit a78de88ac3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1335,7 +1335,7 @@ void cPlayer::AwardAchievement(const CustomStatistic a_Ach)
Msg.SetMessageType(mtSuccess);
// TODO: cCompositeChat should not use protocol-specific strings
// Msg.AddShowAchievementPart(GetName(), nameNew);
Msg.AddTextPart("Achivement get!");
Msg.AddTextPart("Achievement get!");
m_World->BroadcastChat(Msg);
}