changed admin stuff

This commit is contained in:
aviate
2019-09-14 16:38:53 +02:00
parent 3ea1f046ac
commit 9c76b64c4f

View File

@@ -15,7 +15,7 @@ namespace ReallifeGamemode.Server.Util
{ "murcel1337", "I'll remember you all in therapy. (aviate)" }, { "murcel1337", "I'll remember you all in therapy. (aviate)" },
{ ".MichaPlays.", "Der Echte Ballas Leader ist online (MichaPlays)" }, { ".MichaPlays.", "Der Echte Ballas Leader ist online (MichaPlays)" },
{ "balboistderbeste", "Hurra! Hurra! Der Balbo ist jetzt da!" }, { "balboistderbeste", "Hurra! Hurra! Der Balbo ist jetzt da!" },
{ "Roachkook", "Niemand, nicht einmal dein Mutter möchte so etwas sehen. (Siga)" }, { "Roachkook", "Niemand, nicht einmal deine Mutter möchte so etwas sehen. (Siga)" },
{ "Paaqo1337", "Picasso is back!" } { "Paaqo1337", "Picasso is back!" }
}; };
@@ -33,23 +33,23 @@ namespace ReallifeGamemode.Server.Util
} }
else if (lvl == AdminLevel.ADMIN) else if (lvl == AdminLevel.ADMIN)
{ {
ret = "Admin Level 1"; ret = "Admin 1";
} }
else if (lvl == AdminLevel.ADMIN2) else if (lvl == AdminLevel.ADMIN2)
{ {
ret = "Admin Level 2"; ret = "Admin 2";
} }
else if (lvl == AdminLevel.ADMIN3) else if (lvl == AdminLevel.ADMIN3)
{ {
ret = "Admin Level 3"; ret = "Admin 3";
} }
else if (lvl == AdminLevel.HEADADMIN) else if (lvl == AdminLevel.HEADADMIN)
{ {
ret = "Admin Level 1337"; ret = "Admin 1337";
} }
else if (lvl == AdminLevel.PROJEKTLEITUNG) else if (lvl == AdminLevel.PROJEKTLEITUNG)
{ {
ret = "Admin Level 1338"; ret = "Admin 1338";
} }
return ret; return ret;
} }