-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
524940f
commit 99ec90d
Showing
9 changed files
with
31 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
using Synapse.Config; | ||
using System.ComponentModel; | ||
using System.ComponentModel; | ||
using Synapse.Config; | ||
|
||
namespace Pets | ||
{ | ||
public class PluginConfig : AbstractConfigSection | ||
{ | ||
[Description("The max Amount of Pets a Player can have at the same time")] | ||
public int MaxPets = 1; | ||
public int MaxPets { get; set; } = 1; | ||
|
||
[Description("If enabled only the Owner of the pet can see it")] | ||
public bool InvisiblePet = false; | ||
public bool InvisiblePet { get; set; } = false; | ||
|
||
[Description("If Enabled the Name of the Owner will also be displayed")] | ||
public bool ShowOwnerName = true; | ||
public bool ShowOwnerName { get; set; } = true; | ||
|
||
[Description("If Disabled the Role of the Pet will no longer be displayed")] | ||
public bool ShowRole = false; | ||
public bool ShowRole { get; set; } = false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters