From a70567b644aa9763ad946430ddb5656baa89818c Mon Sep 17 00:00:00 2001 From: Monty Marz Date: Sat, 5 Sep 2020 16:12:35 +0200 Subject: [PATCH] make dummy cmd an admin cmd to avoid exp cheesing and entity spamming --- common/src/cmd.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/cmd.rs b/common/src/cmd.rs index 7e3194c4a6..0a45d7cb91 100644 --- a/common/src/cmd.rs +++ b/common/src/cmd.rs @@ -201,7 +201,7 @@ impl ChatCommand { "Prints some debug information about a column", NoAdmin, ), - ChatCommand::Dummy => cmd(vec![], "Spawns a training dummy", NoAdmin), + ChatCommand::Dummy => cmd(vec![], "Spawns a training dummy", Admin), ChatCommand::Explosion => cmd( vec![Float("radius", 5.0, Required)], "Explodes the ground around you",