]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Using REPLICATE API
authorz411 <z411@omaera.org>
Tue, 22 Feb 2022 03:42:15 +0000 (00:42 -0300)
committerz411 <z411@omaera.org>
Tue, 22 Feb 2022 03:42:15 +0000 (00:42 -0300)
qcsrc/common/replicate.qh

index 6115223b486b3e61382fc9fb2f1a709e4d7448d4..868b0b3b3defac79f1e46b5526b3279c93680d80 100644 (file)
@@ -7,6 +7,7 @@ REPLICATE_INIT(bool, cvar_cl_clippedspectating);
 REPLICATE_INIT(bool, cvar_cl_cts_noautoswitch);
 REPLICATE_INIT(float, cvar_cl_handicap);
 REPLICATE_INIT(bool, cvar_cl_noantilag);
+REPLICATE_INIT(bool, cvar_cl_chat_sounds);
 REPLICATE_INIT(string, cvar_g_xonoticversion);
 REPLICATE(cvar_cl_autoswitch, bool, "cl_autoswitch");
 REPLICATE(cvar_cl_autoscreenshot, int, "cl_autoscreenshot");
@@ -14,5 +15,6 @@ REPLICATE(cvar_cl_clippedspectating, bool, "cl_clippedspectating");
 REPLICATE(cvar_cl_cts_noautoswitch, bool, "cl_cts_noautoswitch");
 REPLICATE(cvar_cl_handicap, float, "cl_handicap");
 REPLICATE(cvar_cl_noantilag, bool, "cl_noantilag");
+REPLICATE(cvar_cl_chat_sounds, bool, "cl_chat_sounds");
 REPLICATE(cvar_g_xonoticversion, string, "g_xonoticversion");
 #endif