From eb43311fb55eac133f296072ca3d0766a6ed1a51 Mon Sep 17 00:00:00 2001 From: BIGZi0348 Date: Sat, 28 Dec 2024 18:22:04 +0300 Subject: [PATCH] stuff --- .../ERTRecruitment/ERTRecruitmentRule.cs | 6 +++-- Content.Shared/_White/WhiteCVars.cs | 22 +++++++++---------- 2 files changed, 15 insertions(+), 13 deletions(-) diff --git a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs index 65caec5a7d..66fc71ee4a 100644 --- a/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs +++ b/Content.Server/_White/ERTRecruitment/ERTRecruitmentRule.cs @@ -7,6 +7,7 @@ using Content.Server._White.GhostRecruitment; using Content.Server.GameTicking.Components; using Content.Shared.Administration.Logs; using Content.Shared.Database; +using Content.Shared._White; using Content.Shared._White.GhostRecruitment; using JetBrains.Annotations; using Robust.Server.GameObjects; @@ -147,8 +148,9 @@ public sealed class ERTRecruitmentRule : StationEventSystem EnableLightsGlowing = - CVarDef.Create("white.enable_lights_glowing", true, CVar.CLIENTONLY | CVar.ARCHIVE); + public static readonly CVarDef EnableLightsGlowing = + CVarDef.Create("white.enable_lights_glowing", true, CVar.CLIENTONLY | CVar.ARCHIVE); /* * Offer Indicator @@ -207,9 +207,9 @@ public sealed class WhiteCVars public static readonly CVarDef JukeboxVolume = CVarDef.Create("white.jukebox_volume", 0f, CVar.CLIENTONLY | CVar.ARCHIVE); - /* - * Chat - */ + /* + * Chat + */ public static readonly CVarDef SeparatedChatSize = CVarDef.Create("white.chat_size_separated", "0.6;0", CVar.CLIENTONLY | CVar.ARCHIVE); @@ -231,9 +231,9 @@ public sealed class WhiteCVars CVarDef.Create("white.admin.deadChatAdmin", false, CVar.CLIENT | CVar.REPLICATED | CVar.ARCHIVE); - /* - * End of round stats - */ + /* + * End of round stats + */ /// /// The amount of blood lost required to trigger the BloodLost end of round stat. @@ -313,7 +313,7 @@ public sealed class WhiteCVars /// /// Should load a ERT map? /// - public static readonly CVarDef LoadErtMap = CVarDef.Create("white.ert_load", false, CVar.SERVERONLY); + public static readonly CVarDef LoadErtMap = CVarDef.Create("white.ert_load", true, CVar.SERVERONLY); public static readonly CVarDef LogChatActions = CVarDef.Create("white.log_to_chat", true, CVar.CLIENT | CVar.ARCHIVE | CVar.REPLICATED); @@ -345,11 +345,11 @@ public sealed class WhiteCVars */ // Applies Projectile and Melee damage. - public static readonly CVarDef DamageModifier = + public static readonly CVarDef DamageModifier = CVarDef.Create("damage.modifier", 1.0f, CVar.REPLICATED); // Applies ALL damage, EVEN walls and etc. - public static readonly CVarDef DamageGetModifier = + public static readonly CVarDef DamageGetModifier = CVarDef.Create("damage.get_modifier", 1.0f, CVar.REPLICATED); public static readonly CVarDef AutoKickVpnUsers =