Skip to content

Commit

Permalink
fix: missing member (Exiled-Team#2593)
Browse files Browse the repository at this point in the history
  • Loading branch information
BoltonDev committed Jun 5, 2024
1 parent fbab62a commit 6608d5e
Show file tree
Hide file tree
Showing 21 changed files with 63 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Exiled.CreditTags/Commands/ShowCreditTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ public class ShowCreditTag : ICommand
/// <inheritdoc/>
public string Description { get; } = "Shows your EXILED Credits tag, if available.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Config/Merge.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public class Merge : ICommand
/// <inheritdoc/>
public string Description { get; } = "Merges your configs into the default config distribution.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Config/Split.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public class Split : ICommand
/// <inheritdoc/>
public string Description { get; } = "Splits your configs into the separated config distribution.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/PluginManager/Disable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ public sealed class Disable : ICommand
/// <inheritdoc/>
public string Description { get; } = "Disable a plugin.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/PluginManager/Enable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public sealed class Enable : ICommand
/// <inheritdoc/>
public string Description { get; } = "Enable a plugin";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/PluginManager/Patches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public sealed class Patches : ICommand
/// <inheritdoc/>
public string Description { get; } = "Returns information about all patches (whether they are patched or not)";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/PluginManager/Show.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ public sealed class Show : ICommand
/// <inheritdoc/>
public string Description { get; } = "Get all plugins, names, authors and versions";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/All.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ public class All : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reload all configs and plugins.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/Configs.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public class Configs : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reload plugin configs.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/GamePlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public class GamePlay : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reloads gameplay configs.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/Permissions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ public class Permissions : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reload permissions.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/Plugins.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ public class Plugins : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reloads all plugins.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/RemoteAdmin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public class RemoteAdmin : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reloads remote admin configs.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Events/Commands/Reload/Translations.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ public class Translations : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reload plugin translations.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Example/Commands/ParentCommandExample.cs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ public class ParentTest : ICommand
/// <inheritdoc />
public string Description { get; } = "YOUR DESC";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc />
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Example/Commands/Test.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ public class Test : ICommand
/// <inheritdoc/>
public string Description { get; } = "A simple test command.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Permissions/Commands/Permissions/Add.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class Add : ICommand
/// <inheritdoc/>
public string Description { get; } = "Adds a permission to a group";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Permissions/Commands/Permissions/Group/Add.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class Add : ICommand
/// <inheritdoc/>
public string Description { get; } = "Adds a group to a permission.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Permissions/Commands/Permissions/Group/Remove.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class Remove : ICommand
/// <inheritdoc/>
public string Description { get; } = "Removes a group from permission.";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Permissions/Commands/Permissions/Reload.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class Reload : ICommand
/// <inheritdoc/>
public string Description { get; } = "Reloads all permissions";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down
3 changes: 3 additions & 0 deletions Exiled.Permissions/Commands/Permissions/Remove.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ public class Remove : ICommand
/// <inheritdoc/>
public string Description { get; } = "Adds a permission to a group";

/// <inheritdoc />
public bool SanitizeResponse { get; }

/// <inheritdoc/>
public bool Execute(ArraySegment<string> arguments, ICommandSender sender, out string response)
{
Expand Down

0 comments on commit 6608d5e

Please sign in to comment.