We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e3995c commit 05fa88eCopy full SHA for 05fa88e
1 file changed
src/Configuration/OxideConfig.cs
@@ -54,7 +54,7 @@ public class CompilerOptions
54
/// Enables the publicizer
55
/// </summary>
56
[JsonProperty(PropertyName = "Enable Publicizer")]
57
- public bool Publicize { get; set; } = true;
+ public bool? Publicize { get; set; } = true;
58
}
59
60
[JsonObject]
@@ -239,6 +239,12 @@ private bool InitializeDefaultValues()
239
changed = true;
240
241
242
+ if (Compiler.Publicize == null)
243
+ {
244
+ Compiler.Publicize = true;
245
+ changed = true;
246
+ }
247
+
248
return changed;
249
250
0 commit comments