diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2010-04-05 19:46:30 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:34 +0000 |
commit | 9ff8fef0ae68ec8fe401bd6cb3dc6c89f732faf7 (patch) | |
tree | 5dbff645294d23e44130c86fcd799fd6364a1eaa /src | |
parent | 376af220b8d5c93ab55d79342fe5176f2c91c1d4 (diff) |
* When a buildable is killed by the egg spawn bbox hax (building something too close to an egg), attribute that death to the builder so the points are not queued. (thanks CU|Ams)
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_buildable.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index 94a3c208..0ec5f65c 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -841,7 +841,11 @@ void ASpawn_Think( gentity_t *self ) // If it's part of the map, kill self. if( ent->s.eType == ET_BUILDABLE ) { - G_Damage( ent, NULL, NULL, NULL, NULL, 10000, 0, MOD_SUICIDE ); + if( ent->builtBy >= 0 ) // don't queue the bp from this + G_Damage( ent, NULL, g_entities + ent->builtBy, NULL, NULL, 10000, 0, MOD_SUICIDE ); + else + G_Damage( ent, NULL, NULL, NULL, NULL, 10000, 0, MOD_SUICIDE ); + G_SetBuildableAnim( self, BANIM_SPAWN1, qtrue ); } else if( ent->s.number == ENTITYNUM_WORLD || ent->s.eType == ET_MOVER ) |