X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fserver%2Fdefs.qh;h=29621f61d83ff80fc73163281d1a9bd0c33da6f8;hp=b52649a34ead3389310bb9ef544b4c3e4e1bc3d2;hb=bc91aae1110a375a90c27df5fd48509eb578fb47;hpb=97ead695d25a6f24ee9d9837664e05456692af9d diff --git a/qcsrc/server/defs.qh b/qcsrc/server/defs.qh index b52649a34e..29621f61d8 100644 --- a/qcsrc/server/defs.qh +++ b/qcsrc/server/defs.qh @@ -163,6 +163,7 @@ float default_player_alpha; float default_weapon_alpha; .float cvar_cl_handicap; +.int cvar_cl_gunalign; .float cvar_cl_clippedspectating; .float cvar_cl_autoscreenshot; .float cvar_cl_jetpack_jump; @@ -181,6 +182,7 @@ float default_weapon_alpha; .float cvar_cl_allow_uid2name; .float cvar_cl_allow_uidtracking; +.bool cvar_cl_allow_uidranking; .string stored_netname; string gamemode_name; @@ -190,9 +192,6 @@ string W_Apply_Weaponreplace(string in); void FixIntermissionClient(entity e); void FixClientCvars(entity e); -// WEAPONTODO: remove this -//WepSet weaponsInMap; - .float respawn_countdown; // next number to count float bot_waypoints_for_items; @@ -333,7 +332,7 @@ string deathmessage; .float cvar_cl_weaponimpulsemode; .int selectweapon; // last selected weapon of the player -.float ballistics_density; // wall piercing factor, larger = bullet can pass through more +.float ballistics_density; //const int FROZEN_NOT = 0; const int FROZEN_NORMAL = 1; @@ -413,6 +412,7 @@ IntrusiveList g_locations; IntrusiveList g_saved_team; IntrusiveList g_monster_targets; IntrusiveList g_pathlib_nodes; +IntrusiveList g_moveables; STATIC_INIT(defs) { g_monsters = IL_NEW(); @@ -434,4 +434,5 @@ STATIC_INIT(defs) g_saved_team = IL_NEW(); g_monster_targets = IL_NEW(); g_pathlib_nodes = IL_NEW(); + g_moveables = IL_NEW(); }