diff --git a/EXILED/Exiled.API/Features/Server.cs b/EXILED/Exiled.API/Features/Server.cs index c79d0c4c1d..57d1752725 100644 --- a/EXILED/Exiled.API/Features/Server.cs +++ b/EXILED/Exiled.API/Features/Server.cs @@ -174,7 +174,20 @@ public static int MaxPlayerCount /// Read the VSR for more info about its usage. /// /// + [Obsolete("This field has been deleted because it used the wrong field (TransparentlyModded)")] public static bool IsHeavilyModded + { + get => false; + set => _ = value; + } + + /// + /// Gets or sets a value indicating whether the server is marked as Transparently Modded. + /// + /// It is not used now, wait for a new VSR update. + /// + /// + public static bool IsTransparentlyModded { get => ServerConsole.TransparentlyModdedServerConfig; set => ServerConsole.TransparentlyModdedServerConfig = value;