Skip to content

Commit f9452d8

Browse files
committed
all modules are sealed & tag management commands moved to moderation module
1 parent 1c6949c commit f9452d8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

62 files changed

+66
-66
lines changed

src/Commands/Modules/Admin/AddRoleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Volte.Commands.Modules
99
{
10-
public partial class AdminModule : VolteModule
10+
public sealed partial class AdminModule : VolteModule
1111
{
1212
[Command("AddRole", "Ar")]
1313
[Description("Grants a role to the mentioned user.")]

src/Commands/Modules/Admin/AdminRoleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Volte.Commands.Modules
88
{
9-
public partial class AdminModule : VolteModule
9+
public sealed partial class AdminModule : VolteModule
1010
{
1111
[Command("AdminRole")]
1212
[Description("Sets the role able to use Admin commands for the current guild.")]

src/Commands/Modules/Admin/AntilinkCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Volte.Commands.Modules
77
{
8-
public partial class AdminModule : VolteModule
8+
public sealed partial class AdminModule : VolteModule
99
{
1010
[Command("Antilink", "Al")]
1111
[Description("Enable/Disable Antilink for the current guild.")]

src/Commands/Modules/Admin/AutoroleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Volte.Commands.Modules
88
{
9-
public partial class AdminModule : VolteModule
9+
public sealed partial class AdminModule : VolteModule
1010
{
1111
[Command("Autorole")]
1212
[Description("Sets the role to be used for Autorole.")]

src/Commands/Modules/Admin/BlacklistCommands.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Volte.Commands.Modules
88
{
9-
public partial class AdminModule : VolteModule
9+
public sealed partial class AdminModule : VolteModule
1010
{
1111
[Command("BlacklistAdd", "BlAdd")]
1212
[Description("Adds a given word/phrase to the blacklist for this guild.")]

src/Commands/Modules/Admin/DeleteMessageOnCommandCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Volte.Commands.Modules
77
{
8-
public partial class AdminModule : VolteModule
8+
public sealed partial class AdminModule : VolteModule
99
{
1010
[Command("DeleteMessageOnCommand", "Dmoc")]
1111
[Description("Enable/Disable deleting the command message upon execution of a command for this guild.")]

src/Commands/Modules/Admin/ModLogCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Volte.Commands.Modules
88
{
9-
public partial class AdminModule
9+
public sealed partial class AdminModule : VolteModule
1010
{
1111
[Command("ModLog")]
1212
[Description("Sets the channel to be used for mod log.")]

src/Commands/Modules/Admin/ModRoleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Volte.Commands.Modules
88
{
9-
public partial class AdminModule : VolteModule
9+
public sealed partial class AdminModule : VolteModule
1010
{
1111
[Command("ModRole")]
1212
[Description("Sets the role able to use Moderation commands for the current guild.")]

src/Commands/Modules/Admin/PingChecksCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace Volte.Commands.Modules
77
{
8-
public partial class AdminModule : VolteModule
8+
public sealed partial class AdminModule : VolteModule
99
{
1010
[Command("PingChecks")]
1111
[Description("Enable/Disable checking for @everyone and @here for this guild.")]

src/Commands/Modules/Admin/RemRoleCommand.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace Volte.Commands.Modules
99
{
10-
public partial class AdminModule : VolteModule
10+
public sealed partial class AdminModule : VolteModule
1111
{
1212
[Command("RemRole", "Rr")]
1313
[Description("Remove a role from the mentioned user.")]

0 commit comments

Comments
 (0)