feat: barfight (#1839)

This commit is contained in:
David Markowitz
2025-06-29 14:18:59 -07:00
committed by GitHub
parent a1ba5b8f12
commit a5d0788488
4 changed files with 25 additions and 2 deletions

View File

@@ -1445,12 +1445,20 @@ void SlashCommandHandler::Startup() {
};
RegisterCommand(removeIgnoreCommand);
Command shutdownCommand{
Command command{
.help = "Shuts this world down",
.info = "Shuts this world down",
.aliases = {"shutdown"},
.handle = DEVGMCommands::Shutdown,
.requiredLevel = eGameMasterLevel::DEVELOPER
};
RegisterCommand(shutdownCommand);
RegisterCommand(command);
RegisterCommand({
.help = "Turns all players' pvp mode on",
.info = "Turns all players' pvp mode on",
.aliases = {"barfight"},
.handle = DEVGMCommands::Barfight,
.requiredLevel = eGameMasterLevel::DEVELOPER
});
}