Create allbalance command to get list of everyone's currency (#306)
- Create `/allbalance` command for server administrators to be able to get a list of everyone's currency - This will allow admins to adjust and rebalance currency as desired #260 Reviewed-on: #306 Reviewed-by: VylpesTester <tester@vylpes.com> Co-authored-by: Ethan Lane <ethan@vylpes.com> Co-committed-by: Ethan Lane <ethan@vylpes.com>
This commit is contained in:
parent
f28254e407
commit
b8cd73c570
2 changed files with 30 additions and 0 deletions
|
@ -3,6 +3,7 @@ import { Environment } from "./constants/Environment";
|
|||
|
||||
// Global Command Imports
|
||||
import About from "./commands/about";
|
||||
import AllBalance from "./commands/allbalance";
|
||||
import Balance from "./commands/balance";
|
||||
import Daily from "./commands/daily";
|
||||
import Drop from "./commands/drop";
|
||||
|
@ -31,6 +32,7 @@ export default class Registry {
|
|||
public static RegisterCommands() {
|
||||
// Global Commands
|
||||
CoreClient.RegisterCommand("about", new About());
|
||||
CoreClient.RegisterCommand("allbalance", new AllBalance());
|
||||
CoreClient.RegisterCommand("balance", new Balance());
|
||||
CoreClient.RegisterCommand("daily", new Daily());
|
||||
CoreClient.RegisterCommand("drop", new Drop());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue