From 71b9f0f01df7b5b8203b769d74f230e67669e68e Mon Sep 17 00:00:00 2001 From: Pilzinsel64 Date: Fri, 16 Sep 2022 17:23:06 +0200 Subject: [PATCH] disable nameplate category in tag properties again for now --- PlayerTags/Data/DefaultPluginData.cs | 6 +++--- PlayerTags/Data/Tag.cs | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/PlayerTags/Data/DefaultPluginData.cs b/PlayerTags/Data/DefaultPluginData.cs index 3697a84..143fc64 100644 --- a/PlayerTags/Data/DefaultPluginData.cs +++ b/PlayerTags/Data/DefaultPluginData.cs @@ -34,9 +34,9 @@ namespace PlayerTags.Data IsVisibleInPveDuties = true, IsVisibleInPvpDuties = true, - NameplateFreeCompanyVisibility = NameplateFreeCompanyVisibility.Never, - NameplateTitleVisibility = NameplateTitleVisibility.Always, - NameplateTitlePosition = NameplateTitlePosition.AlwaysAboveName, + //NameplateFreeCompanyVisibility = NameplateFreeCompanyVisibility.Never, + //NameplateTitleVisibility = NameplateTitleVisibility.Always, + //NameplateTitlePosition = NameplateTitlePosition.AlwaysAboveName, IsVisibleForSelf = true, IsVisibleForFriendPlayers = true, diff --git a/PlayerTags/Data/Tag.cs b/PlayerTags/Data/Tag.cs index d96e16f..51e9d0a 100644 --- a/PlayerTags/Data/Tag.cs +++ b/PlayerTags/Data/Tag.cs @@ -124,12 +124,12 @@ namespace PlayerTags.Data [InheritableCategory("TextCategory")] public InheritableValue IsTextColorAppliedToNameplateFreeCompany = new InheritableValue(false); - [InheritableCategory("NameplateCategory")] - public InheritableValue NameplateFreeCompanyVisibility = new InheritableValue(Data.NameplateFreeCompanyVisibility.Default); - [InheritableCategory("NameplateCategory")] - public InheritableValue NameplateTitleVisibility = new InheritableValue(Data.NameplateTitleVisibility.Default); - [InheritableCategory("NameplateCategory")] - public InheritableValue NameplateTitlePosition = new InheritableValue(Data.NameplateTitlePosition.Default); + //[InheritableCategory("NameplateCategory")] + //public InheritableValue NameplateFreeCompanyVisibility = new InheritableValue(Data.NameplateFreeCompanyVisibility.Default); + //[InheritableCategory("NameplateCategory")] + //public InheritableValue NameplateTitleVisibility = new InheritableValue(Data.NameplateTitleVisibility.Default); + //[InheritableCategory("NameplateCategory")] + //public InheritableValue NameplateTitlePosition = new InheritableValue(Data.NameplateTitlePosition.Default); [InheritableCategory("PositionCategory")] public InheritableValue TagPositionInChat = new InheritableValue(TagPosition.Before);