summaryrefslogtreecommitdiff
path: root/Impostor-dev/src/Impostor.Server/Config/DisconnectMessages.cs
blob: a86735f8f1ae93b69a6a44e20357664fb7c26572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
namespace Impostor.Server.Config
{
    public static class DisconnectMessages
    {
        public const string Error = "There was an internal server error. " +
                                    "Check the server console for more information. " +
                                    "Please report the issue on the AmongUsServer GitHub if it keeps happening.";

        public const string Destroyed = "The game you tried to join is being destroyed. " +
                                        "Please create a new game.";

        public const string NotImplemented = "Game listing has not been implemented in Impostor yet for servers " +
                                             "running in server redirection mode.";

        public const string UsernameLength = "Your username is too long, please make it shorter.";

        public const string UsernameIllegalCharacters = "Your username contains illegal characters, please remove them.";
    }
}