Browse Source

Brought back deleted setters

pull/193/head
Kwoth 9 years ago
parent
commit
ff19727517
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/Discord.Net.Commands/Attributes/ModuleAttribute.cs

+ 2
- 2
src/Discord.Net.Commands/Attributes/ModuleAttribute.cs View File

@@ -6,8 +6,8 @@ namespace Discord.Commands
public class ModuleAttribute : Attribute public class ModuleAttribute : Attribute
{ {
public string Prefix { get; } public string Prefix { get; }
public bool AutoLoad { get; }
public bool ForceWhitespace { get; }
public bool AutoLoad { get; set; }
public bool ForceWhitespace { get; set; }


public ModuleAttribute(string prefix = null) public ModuleAttribute(string prefix = null)
{ {


Loading…
Cancel
Save