Console CommandsSuggestion

Can you add support for the wipe command in console so we can do it server side?


        [ConsoleCommand("wipePlayerProgress")]
        void ccmdwipePlayerProgress(ConsoleSystem.Arg arg)
        {
            if (arg.Connection != null) return;
            playerData.PlayerProgress = null;
            Player_Data.WriteObject(Player_Data);
            LoadData();
        }

Fixed! Just add it before '#endregion' around line 3000-3010