summaryrefslogtreecommitdiff
path: root/src/game
diff options
context:
space:
mode:
authorTim Angus <tim@ngus.net>2004-03-25 05:19:23 +0000
committerTim Angus <tim@ngus.net>2004-03-25 05:19:23 +0000
commit01b2fd216a79749a0d801e87a44ba1b399b2a977 (patch)
tree9efd792ffbc4be20bd023372799bccd46ee84eb2 /src/game
parentc5d421e1af51f714192b236933df7bde5a331000 (diff)
* Fixed particle system infinite loop bug in trem2
* Spawns that are interfered with plats now suicide * Fixed spectator scrolling colour screwup
Diffstat (limited to 'src/game')
-rw-r--r--src/game/g_buildable.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c
index 3ff4da9a..3cebcd08 100644
--- a/src/game/g_buildable.c
+++ b/src/game/g_buildable.c
@@ -588,7 +588,8 @@ void ASpawn_Think( gentity_t *self )
{
if( ( ent = G_CheckSpawnPoint( self->s.origin, self->s.origin2, BA_A_SPAWN, NULL ) ) != NULL )
{
- if( ent->s.eType == ET_BUILDABLE || ent->s.number == ENTITYNUM_WORLD )
+ if( ent->s.eType == ET_BUILDABLE || ent->s.number == ENTITYNUM_WORLD ||
+ ent->s.eType == ET_MOVER )
{
G_Damage( self, NULL, NULL, NULL, NULL, 10000, 0, MOD_SUICIDE );
return;
@@ -2090,7 +2091,8 @@ void HSpawn_Think( gentity_t *self )
{
if( ( ent = G_CheckSpawnPoint( self->s.origin, self->s.origin2, BA_H_SPAWN, NULL ) ) != NULL )
{
- if( ent->s.eType == ET_BUILDABLE || ent->s.number == ENTITYNUM_WORLD )
+ if( ent->s.eType == ET_BUILDABLE || ent->s.number == ENTITYNUM_WORLD ||
+ ent->s.eType == ET_MOVER )
{
G_Damage( self, NULL, NULL, NULL, NULL, 10000, 0, MOD_SUICIDE );
return;