Line | |
---|
1 | using System.Collections.Generic;
|
---|
2 |
|
---|
3 | namespace AllocsFixes.Web {
|
---|
4 | public class WebTokens_Legacy : ConsoleCmdAbstract {
|
---|
5 | private const string notUsedMessage = "NOT USED - WebTokens are managed through vanilla 7DTD now. Please use the 'webtokens' command instead.";
|
---|
6 |
|
---|
7 | public override string[] getCommands () {
|
---|
8 | return new[] {"webtokens_legacy"};
|
---|
9 | }
|
---|
10 |
|
---|
11 | public override string getDescription () {
|
---|
12 | return notUsedMessage;
|
---|
13 | }
|
---|
14 |
|
---|
15 | public override string getHelp () {
|
---|
16 | return notUsedMessage;
|
---|
17 | }
|
---|
18 |
|
---|
19 | public override void Execute (List<string> _params, CommandSenderInfo _senderInfo) {
|
---|
20 | SdtdConsole.Instance.Output (notUsedMessage);
|
---|
21 | }
|
---|
22 |
|
---|
23 | }
|
---|
24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.