diff options
author | Tim Angus <tim@ngus.net> | 2001-03-31 18:37:42 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2001-03-31 18:37:42 +0000 |
commit | 370ae26d5bb2aa7c17588b3744ebc3ac01918df7 (patch) | |
tree | ad43ff321cd17be396560bbac398ce15c4bdfa7e /src/game | |
parent | e462d0658ddb7a655c8d1440d6f226d93be8dac3 (diff) |
Removed redundant code
Diffstat (limited to 'src/game')
-rw-r--r-- | src/game/g_buildable.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/game/g_buildable.c b/src/game/g_buildable.c index 135fcdb7..5c3cab37 100644 --- a/src/game/g_buildable.c +++ b/src/game/g_buildable.c @@ -623,12 +623,6 @@ itemBuildError_t itemFits( gentity_t *ent, buildable_t buildable, int distance ) if( level.humanBuildPoints - BG_FindBuildPointsForBuildable( buildable ) < 0 ) reason = IBE_NOPOWER; -/* tempent->classname = BG_FindEntityNameForBuildable( buildable ); - VectorCopy( entity_origin, tempent->s.origin ); - tempent->parentNode = NULL; - - if( !findPower( tempent ) ) - reason = IBE_NOPOWER;*/ for ( i = 1, tempent = g_entities + i; i < level.num_entities; i++, tempent++ ) { if( !Q_stricmp( tempent->classname, "team_human_reactor" ) || |