diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2009-10-03 12:53:44 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:18 +0000 |
commit | b651c4159020dd29d2a5c801579a5224a1af0264 (patch) | |
tree | cd1f73dc995f7fd03fe062fef27a4f850234f671 /src/game | |
parent | d0b89cda0b67eb880fc47127f6ffc9b7fe805872 (diff) |
Queue BP when incomplete buildables are destroyed
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_buildable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index f36e6166..99c6ca94 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -2504,6 +2504,7 @@ void HSpawn_Disappear( gentity_t *self ) self->s.eFlags |= EF_NODRAW; //don't draw the model once its destroyed self->timestamp = level.time; + G_QueueBuildPoints( self ); G_FreeEntity( self ); } |