add temp1flag

master
an 2019-09-19 12:56:17 -04:00
parent de8dfa48a6
commit 2aa46c72ec
2 changed files with 10 additions and 6 deletions

View File

@ -554,10 +554,11 @@ enum {
};
enum {
WEAPON_SHOTGUN = 1,
WEAPON_ROCKET = 2,
WEAPON_SPIKES = 4,
WEAPON_BIG = 8,
SF_CHEATS = 1 << 0,
SF_LIVES_BEG = 1 << 1,
SF_LIVES_END = 1 << 3,
SF_LIVES_FLG = 0x0E,
SF_DIST_AMMO = 1 << 4,
};
#pragma noref 0
@ -604,6 +605,8 @@ string nextmap;
entity sight_entity;
float sight_entity_time;
float temp1flag;
// fields --------------------------------------------------------------------|
// world fields

View File

@ -179,8 +179,9 @@ void() worldspawn = {
};
void() StartFrame = {
teamplay = cvar("teamplay");
skill = cvar("skill");
teamplay = cvar("teamplay");
skill = cvar("skill");
temp1flag = cvar("temp1");
framecount = framecount + 1;
};