diff options
author | Tim Angus <tim@ngus.net> | 2006-06-04 22:17:32 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2006-06-04 22:17:32 +0000 |
commit | 409e6051a48221cb2a02c182dc0d5e64f2eeb40f (patch) | |
tree | bc21ff57ac201d2e7316a23aabb7aeb24902d2de /src/game/g_spawn.c | |
parent | db12d262430a58bae27e2b1ece3f07215a1083d2 (diff) |
* Added target_hurt
* Various other map entity fixes/enhancements
* Hovel exploit fixed
* Fixed tesla trail disappearing at edge of range
* Default player name now inherited from OS
* Fixed spelling of Veda's surname :x
Diffstat (limited to 'src/game/g_spawn.c')
-rw-r--r-- | src/game/g_spawn.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/game/g_spawn.c b/src/game/g_spawn.c index a2b3b4b7..4c515d83 100644 --- a/src/game/g_spawn.c +++ b/src/game/g_spawn.c @@ -134,14 +134,12 @@ field_t fields[ ] = {"dmg", FOFS(damage), F_INT}, {"angles", FOFS(s.angles), F_VECTOR}, {"angle", FOFS(s.angles), F_ANGLEHACK}, - //TA {"bounce", FOFS(physicsBounce), F_FLOAT}, {"alpha", FOFS(pos1), F_VECTOR}, {"radius", FOFS(pos2), F_VECTOR}, {"acceleration", FOFS(acceleration), F_VECTOR}, {"animation", FOFS(animation), F_VECTOR4}, {"rotatorAngle", FOFS(rotatorAngle), F_FLOAT}, - //TA {"targetShaderName", FOFS(targetShaderName), F_LSTRING}, {"targetShaderNewName", FOFS(targetShaderNewName), F_LSTRING}, @@ -159,7 +157,6 @@ void SP_info_player_start( gentity_t *ent ); void SP_info_player_deathmatch( gentity_t *ent ); void SP_info_player_intermission( gentity_t *ent ); -//TA: extra bits void SP_info_alien_intermission( gentity_t *ent ); void SP_info_human_intermission( gentity_t *ent ); @@ -175,8 +172,8 @@ void SP_func_bobbing( gentity_t *ent ); void SP_func_pendulum( gentity_t *ent ); void SP_func_button( gentity_t *ent ); void SP_func_door( gentity_t *ent ); -void SP_func_door_rotating( gentity_t *ent ); //TA -void SP_func_door_model( gentity_t *ent ); //TA +void SP_func_door_rotating( gentity_t *ent ); +void SP_func_door_model( gentity_t *ent ); void SP_func_train( gentity_t *ent ); void SP_func_timer( gentity_t *self); @@ -208,6 +205,7 @@ 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_target_hurt( gentity_t *ent ); void SP_light( gentity_t *self ); void SP_info_null( gentity_t *self ); @@ -224,7 +222,6 @@ void SP_shooter_rocket( gentity_t *ent ); void SP_shooter_plasma( gentity_t *ent ); void SP_shooter_grenade( gentity_t *ent ); -//TA: void SP_misc_particle_system( gentity_t *ent ); void SP_misc_anim_model( gentity_t *ent ); void SP_misc_light_flare( gentity_t *ent ); @@ -291,6 +288,7 @@ spawn_t spawns[ ] = { "target_rumble", SP_target_rumble }, { "target_alien_win", SP_target_alien_win }, { "target_human_win", SP_target_human_win }, + { "target_hurt", SP_target_hurt }, { "light", SP_light }, { "path_corner", SP_path_corner }, |