mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-09-05 23:08:31 +00:00
feat: barfight (#1839)
This commit is contained in:
@@ -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
|
||||
});
|
||||
}
|
||||
|
Reference in New Issue
Block a user