Rev | Line | |
---|
[456] | 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 |
|
---|
[488] | 7 | public override string[] getCommands () {
|
---|
[456] | 8 | return new[] {"webtokens_legacy"};
|
---|
| 9 | }
|
---|
| 10 |
|
---|
[488] | 11 | public override string getDescription () {
|
---|
[456] | 12 | return notUsedMessage;
|
---|
| 13 | }
|
---|
| 14 |
|
---|
[488] | 15 | public override string getHelp () {
|
---|
[456] | 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.