Changed lightstyle cvar default to be disabled.

This commit is contained in:
Greyscale 2009-08-03 14:25:13 -07:00
parent 9b1a086f81
commit 940463491b
2 changed files with 3 additions and 3 deletions

View File

@ -390,8 +390,8 @@ zr_account_cashdmg "0"
// Lightstyle // Lightstyle
// Change lightstyle (brightness) of the map. // Change lightstyle (brightness) of the map.
// Default: "1" // Default: "0"
zr_veffects_lightstyle "1" zr_veffects_lightstyle "0"
// Lightstyle value. ['a' = Darkest | 'z' = Brightest | Dependency: zr_veffects_lightstyle] // Lightstyle value. ['a' = Darkest | 'z' = Brightest | Dependency: zr_veffects_lightstyle]
// Default: "b" // Default: "b"

View File

@ -345,7 +345,7 @@ CvarsCreate()
// =========================== // ===========================
// Lightstyle // Lightstyle
g_hCvarsList[CVAR_VEFFECTS_LIGHTSTYLE] = CreateConVar("zr_veffects_lightstyle", "1", "Change lightstyle (brightness) of the map."); g_hCvarsList[CVAR_VEFFECTS_LIGHTSTYLE] = CreateConVar("zr_veffects_lightstyle", "0", "Change lightstyle (brightness) of the map.");
g_hCvarsList[CVAR_VEFFECTS_LIGHTSTYLE_VALUE] = CreateConVar("zr_veffects_lightstyle_value", "b", "Lightstyle value. ['a' = Darkest | 'z' = Brightest | Dependency: zr_veffects_lightstyle]"); g_hCvarsList[CVAR_VEFFECTS_LIGHTSTYLE_VALUE] = CreateConVar("zr_veffects_lightstyle_value", "b", "Lightstyle value. ['a' = Darkest | 'z' = Brightest | Dependency: zr_veffects_lightstyle]");
// Sky // Sky