summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedja Beader <fedja@protonmail.ch>2024-04-27 21:07:20 +0200
committerFedja Beader <fedja@protonmail.ch>2024-04-27 22:31:04 +0200
commit632e260e5190ec623feb67f8b43ca29da066a1c3 (patch)
tree19729f1ab0cbe19ffb59d2b3f86d646282d67ab1
parent52b591d71bbb4aec2b212b4d8190e6db18a46c73 (diff)
downloadmanaplus-632e260e5190ec623feb67f8b43ca29da066a1c3.tar.gz
manaplus-632e260e5190ec623feb67f8b43ca29da066a1c3.tar.bz2
manaplus-632e260e5190ec623feb67f8b43ca29da066a1c3.tar.xz
manaplus-632e260e5190ec623feb67f8b43ca29da066a1c3.zip
Rename server types - Test_User spent time figuring out why herc
doesen't work for ML
-rw-r--r--src/gui/models/typelistmodel.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gui/models/typelistmodel.h b/src/gui/models/typelistmodel.h
index a06aeda51..d6f0b1169 100644
--- a/src/gui/models/typelistmodel.h
+++ b/src/gui/models/typelistmodel.h
@@ -55,17 +55,17 @@ class TypeListModel final : public ListModel
{
#ifdef TMWA_SUPPORT
if (elementIndex == 0)
- return "TmwAthena";
+ return "TMW Athena";
else if (elementIndex == 1)
- return "Hercules";
+ return "Hercules (Vanilla)";
else if (elementIndex == 2)
- return "Evol2";
+ return "Hercules (ML/Evol)";
else
#else // TMWA_SUPPORT
if (elementIndex == 0)
- return "Hercules";
+ return "Hercules (Vanilla)";
else if (elementIndex == 1)
- return "Evol2";
+ return "Hercules (ML/Evol);
else
#endif // TMWA_SUPPORT
return "Unknown";