From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sat, 21 Jun 2025 16:34:11 +0000 (+0200) Subject: Allow Maintainers to use customvote command (#38385) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=9b5779bd331ddbd362ce0b9887f0aa0908c38cf2;p=space-station-14.git Allow Maintainers to use customvote command (#38385) Changed from Moderator perm to Round perm --- diff --git a/Content.Server/Voting/VoteCommands.cs b/Content.Server/Voting/VoteCommands.cs index 677fe1d0f6..e526829d27 100644 --- a/Content.Server/Voting/VoteCommands.cs +++ b/Content.Server/Voting/VoteCommands.cs @@ -63,7 +63,7 @@ namespace Content.Server.Voting } } - [AdminCommand(AdminFlags.Moderator)] + [AdminCommand(AdminFlags.Round)] public sealed class CreateCustomCommand : LocalizedEntityCommands { [Dependency] private readonly IVoteManager _voteManager = default!; @@ -218,7 +218,7 @@ namespace Content.Server.Voting } } - [AdminCommand(AdminFlags.Moderator)] + [AdminCommand(AdminFlags.Round)] public sealed class CancelVoteCommand : LocalizedEntityCommands { [Dependency] private readonly IAdminLogManager _adminLogger = default!;