Browse Source

Fix `ACommandDosh` having broken "set" subcommand

pull/8/head
Anton Tarasenko 4 years ago
parent
commit
1da61a5a9c
  1. 2
      sources/Commands/BuiltInCommands/ACommandDosh.uc

2
sources/Commands/BuiltInCommands/ACommandDosh.uc

@ -27,7 +27,7 @@ protected function BuildData(CommandDataBuilder builder)
.Describe(P("Gives (takes if negative) players a specified <amount>" .Describe(P("Gives (takes if negative) players a specified <amount>"
@ "of money.")); @ "of money."));
builder.SubCommand(P("set")) builder.SubCommand(P("set"))
.ParamIntegerList(P("amount")) .ParamInteger(P("amount"))
.Describe(P("Sets players' money to a specified <amount>.")); .Describe(P("Sets players' money to a specified <amount>."));
builder.Option(P("silent")) builder.Option(P("silent"))
.Describe(P("If specified - players won't receive a notification about" .Describe(P("If specified - players won't receive a notification about"

Loading…
Cancel
Save