mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 21:16:49 +00:00
9 lines
No EOL
876 B
C#
9 lines
No EOL
876 B
C#
namespace PluralKit.Bot {
|
|
public static class Errors {
|
|
public static PKError NotOwnSystemError => new PKError($"You can only run this command on your own system.");
|
|
public static PKError NotOwnMemberError => new PKError($"You can only run this command on your own member.");
|
|
public static PKError NoSystemError => new PKError("You do not have a system registered with PluralKit. To create one, type `pk;system new`.");
|
|
public static PKError ExistinSystemError => new PKError("You already have a system registered with PluralKit. To view it, type `pk;system`. If you'd like to delete your system and start anew, type `pk;system delete`, or if you'd like to unlink this account from it, type `pk;unlink`.");
|
|
public static PKError MissingMemberError => new PKSyntaxError("You need to specify a member to run this command on.");
|
|
}
|
|
} |