diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/game/g_buildable.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index fab860a2..0f5e9998 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -2029,6 +2029,9 @@ itemBuildError_t G_itemFits( gentity_t *ent, buildable_t buildable, int distance if( !( normal[ 2 ] >= minNormal || ( invert && normal[ 2 ] <= -minNormal ) ) ) return IBE_NORMAL; + if( tr1.entityNum != ENTITYNUM_WORLD ) + return IBE_NORMAL; + if( ent->client->ps.stats[ STAT_PTEAM ] == PTE_ALIENS ) { //alien criteria |