using System.Collections.Generic; namespace AllocsFixes.Web { public class WebTokens_Legacy : ConsoleCmdAbstract { private const string notUsedMessage = "NOT USED - WebTokens are managed through vanilla 7DTD now. Please use the 'webtokens' command instead."; protected override string[] getCommands () { return new[] {"webtokens_legacy"}; } protected override string getDescription () { return notUsedMessage; } protected override string getHelp () { return notUsedMessage; } public override void Execute (List _params, CommandSenderInfo _senderInfo) { SdtdConsole.Instance.Output (notUsedMessage); } } }