Create an admin command to give a breakdown of card stats
All checks were successful
Test / build (push) Successful in 9s

- Created a  command for admins to see what cards have been added by type
- Added this information to the logger

#350
This commit is contained in:
Ethan Lane 2024-08-30 18:47:04 +01:00
parent 5deb6fcc14
commit e8b20004bd
3 changed files with 70 additions and 1 deletions

View file

@ -13,6 +13,7 @@ import Inventory from "./commands/inventory";
import Resync from "./commands/resync";
import Sacrifice from "./commands/sacrifice";
import Series from "./commands/series";
import Stats from "./commands/stats";
import Trade from "./commands/trade";
import View from "./commands/view";
@ -42,6 +43,7 @@ export default class Registry {
CoreClient.RegisterCommand("resync", new Resync());
CoreClient.RegisterCommand("sacrifice", new Sacrifice());
CoreClient.RegisterCommand("series", new Series());
CoreClient.RegisterCommand("stats", new Stats());
CoreClient.RegisterCommand("trade", new Trade());
CoreClient.RegisterCommand("view", new View());