public CommandObjectsCollect()
            : base(ChatCommandSecurity.Admin, "collectobjects", new[] { "/collectobjects" })
        {
            if (_instance == null)
                _instance = this;

            _timer100 = new Timer(100);
            _timer100.Elapsed += TimerOnElapsed100;
        }
        public CommandObjectsCollect()
            : base(ChatCommandSecurity.Admin, "collectobjects", new[] { "/collectobjects" })
        {
            if (_instance == null)
            {
                _instance = this;
            }

            _timer100          = new Timer(100);
            _timer100.Elapsed += TimerOnElapsed100;
        }