public async Task OpenCaseAsync()
        {
            //See if user has opened a case before, if not, send a help tip
            if (!CsgoCaseSelectionHandler.GetHasUserSelectedCase(Context))
            {
                await ReplyAndDeleteAsync($"Tip: Use `{CommandGuildPrefixManager.GetGuildCommandPrefix(Context)} cs case` to select different cases to open", timeout : TimeSpan.FromSeconds(60));
            }

            await CsgoUnboxingHandler.OpenCase(Context);
        }
 public async Task OpenDropAsync()
 {
     await CsgoUnboxingHandler.OpenDrop(Context);
 }