diff --git a/source/defs.qc b/source/defs.qc index 489080d..f0df59a 100644 --- a/source/defs.qc +++ b/source/defs.qc @@ -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 diff --git a/source/world.qc b/source/world.qc index 1928ebd..d7bb413 100644 --- a/source/world.qc +++ b/source/world.qc @@ -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; };