missing parenthasis will definetly break building

This commit is contained in:
Steven Tracey 2021-09-21 16:02:02 -04:00 committed by GitHub
parent f8eb427aae
commit 299b406436
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ public class CommandManager {
public CommandManager() { public CommandManager() {
addCommand(new CoinCmd()); addCommand(new CoinCmd());
addCommand(new DiceCmd()); addCommand(new DiceCmd());
addCommand(new PingCmd); addCommand(new PingCmd());
addCommand(new InfoCmd()); addCommand(new InfoCmd());
} }