diff options
Diffstat (limited to 'src/net/eathena')
-rw-r--r-- | src/net/eathena/generalhandler.cpp | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/src/net/eathena/generalhandler.cpp b/src/net/eathena/generalhandler.cpp index fb78e800f..029b7123a 100644 --- a/src/net/eathena/generalhandler.cpp +++ b/src/net/eathena/generalhandler.cpp @@ -200,24 +200,7 @@ void GeneralHandler::gameStarted() const // protection against double addition attributes. statusWindow->clearAttributes(); - statusWindow->addAttribute(Attributes::STR, - // TRANSLATORS: player stat - _("Strength"), "str", Modifiable_true); - statusWindow->addAttribute(Attributes::AGI, - // TRANSLATORS: player stat - _("Agility"), "agi", Modifiable_true); - statusWindow->addAttribute(Attributes::VIT, - // TRANSLATORS: player stat - _("Vitality"), "vit", Modifiable_true); - statusWindow->addAttribute(Attributes::INT, - // TRANSLATORS: player stat - _("Intelligence"), "int", Modifiable_true); - statusWindow->addAttribute(Attributes::DEX, - // TRANSLATORS: player stat - _("Dexterity"), "dex", Modifiable_true); - statusWindow->addAttribute(Attributes::LUK, - // TRANSLATORS: player stat - _("Luck"), "luk", Modifiable_true); + statusWindow->addBasicAttributes(); // TRANSLATORS: player stat statusWindow->addAttribute(Attributes::ATK, _("Attack")); |