From 9b5779bd331ddbd362ce0b9887f0aa0908c38cf2 Mon Sep 17 00:00:00 2001 From: SlamBamActionman <83650252+SlamBamActionman@users.noreply.github.com> Date: Sat, 21 Jun 2025 18:34:11 +0200 Subject: [PATCH] Allow Maintainers to use customvote command (#38385) Changed from Moderator perm to Round perm --- Content.Server/Voting/VoteCommands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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!; -- 2.51.2