diff options
Diffstat (limited to 'src/game/g_spawn.c')
-rw-r--r-- | src/game/g_spawn.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/game/g_spawn.c b/src/game/g_spawn.c index 39db22be..080f7b41 100644 --- a/src/game/g_spawn.c +++ b/src/game/g_spawn.c @@ -199,6 +199,8 @@ void SP_target_position( gentity_t *ent ); void SP_target_location( gentity_t *ent ); void SP_target_push( gentity_t *ent ); void SP_target_rumble( gentity_t *ent ); +void SP_target_alien_win( gentity_t *ent ); +void SP_target_human_win( gentity_t *ent ); void SP_light( gentity_t *self ); void SP_info_null( gentity_t *self ); @@ -280,6 +282,8 @@ spawn_t spawns[ ] = { "target_location", SP_target_location }, { "target_push", SP_target_push }, { "target_rumble", SP_target_rumble }, + { "target_alien_win", SP_target_alien_win }, + { "target_human_win", SP_target_human_win }, { "light", SP_light }, { "path_corner", SP_path_corner }, |