Skip to content

Commit

Permalink
Fix #1940 (achievement do not contain text).
Browse files Browse the repository at this point in the history
  • Loading branch information
hiker committed Jan 30, 2015
1 parent 85b5654 commit 4cf20ff
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/achievements/achievement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -199,8 +199,8 @@ void Achievement::check()
if(m_achievement_info->checkCompletion(this))
{
//show achievement
core::stringw s = StringUtils::insertValues(_("Completed achievement \"%s\"."),
m_achievement_info->getName());
core::stringw s = _("Completed achievement \"%s\".",
m_achievement_info->getName().c_str());
MessageQueue::add(MessageQueue::MT_ACHIEVEMENT, s);

// Sends a confirmation to the server that an achievement has been
Expand Down

0 comments on commit 4cf20ff

Please sign in to comment.