Fixed fix for target_delay.

Added a basic spawn function for func_stasis door.
This commit is contained in:
UberGames 2011-07-20 17:16:10 +02:00
parent e037905d97
commit 2a5e54ae23
3 changed files with 8 additions and 1 deletions

View file

@ -3325,3 +3325,8 @@ void SP_func_mover(gentity_t *ent) {
level.numBrushEnts++;
}
// Basic spawn function for func_stasis_door
void SP_func_stasis_door(gentity_t *ent) {
}

View file

@ -143,6 +143,7 @@ void SP_func_door_rotating (gentity_t *ent);
void SP_func_brushmodel(gentity_t *ent); // for brushmodel hijacking :D
void SP_func_lightchange(gentity_t *ent); // "toggling" light
void SP_func_targetmover(gentity_t *ent);
void SP_func_stasis_door(gentity_t *ent);
void SP_trigger_always (gentity_t *ent);
void SP_trigger_multiple (gentity_t *ent);
@ -325,6 +326,7 @@ spawn_t spawns[] = {
{"func_brushmodel", SP_func_brushmodel}, // Hijack me haha
{"func_lightchange", SP_func_lightchange},
{"func_targetmover", SP_func_targetmover},
{"func_stasis_door", SP_func_stasis_door},
// Triggers are brush objects that cause an effect when contacted
// by a living player, usually involving firing targets.

View file

@ -148,7 +148,7 @@ void Use_Target_Delay( gentity_t *ent, gentity_t *other, gentity_t *activator )
void SP_target_delay( gentity_t *ent ) {
if ( !ent->wait ) {
G_SpawnInt("delay", "0", &ent->wait);
G_SpawnFloat("delay", "0", &ent->wait);
if(!ent->wait)
ent->wait = 1;
}