mirror of
https://github.com/Minecraft-Community-Edition/client.git
synced 2026-05-25 18:44:52 +00:00
I fixed something
This commit is contained in:
@@ -25,7 +25,12 @@ AchievementPopup::AchievementPopup(Minecraft *mc)
|
||||
void AchievementPopup::popup(Achievement *ach)
|
||||
{
|
||||
title = I18n::get(L"achievement.get");
|
||||
desc = ach->name;
|
||||
if (title == L"achievement.get")
|
||||
title = L"Achievement Get!";
|
||||
|
||||
desc = I18n::get(ach->name);
|
||||
if (desc == ach->name)
|
||||
desc = ach->getDescription();
|
||||
startTime = System::currentTimeMillis();
|
||||
this->ach = ach;
|
||||
isHelper = false;
|
||||
|
||||
Reference in New Issue
Block a user