From 87149e18b5abbe455b94ae12fe50d173dca8d4b3 Mon Sep 17 00:00:00 2001 From: Pieter-Jan Briers Date: Fri, 4 Dec 2020 11:04:43 +0100 Subject: [PATCH] Fix parallax.debug defaulting to true. --- Content.Shared/CCVars.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content.Shared/CCVars.cs b/Content.Shared/CCVars.cs index 5aea88aab2..0b70c44cd1 100644 --- a/Content.Shared/CCVars.cs +++ b/Content.Shared/CCVars.cs @@ -149,10 +149,10 @@ namespace Content.Shared */ public static readonly CVarDef ParallaxEnabled = - CVarDef.Create("parallax.enabled", true); + CVarDef.Create("parallax.enabled", true, CVar.CLIENTONLY); public static readonly CVarDef ParallaxDebug = - CVarDef.Create("parallax.debug", true); + CVarDef.Create("parallax.debug", false, CVar.CLIENTONLY); /*