Skip to content

Commit

Permalink
Removed check for Antennae mutation from Character::sees
Browse files Browse the repository at this point in the history
  • Loading branch information
Night-Pryanik committed Dec 2, 2024
1 parent 6cb15e8 commit d18fbb5
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/character.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,6 @@ static const species_id species_HUMAN( "HUMAN" );
static const start_location_id start_location_sloc_shelter_a( "sloc_shelter_a" );

static const trait_id trait_ADRENALINE( "ADRENALINE" );
static const trait_id trait_ANTENNAE( "ANTENNAE" );
static const trait_id trait_BADBACK( "BADBACK" );
static const trait_id trait_BIRD_EYE( "BIRD_EYE" );
static const trait_id trait_CANNIBAL( "CANNIBAL" );
Expand Down Expand Up @@ -11308,9 +11307,6 @@ bool Character::sees( const Creature &critter ) const
if( std::abs( pos_bub().z() - critter.pos_bub().z() ) > fov_3d_z_range ) {
return false;
}
if( dist <= 3 && has_active_mutation( trait_ANTENNAE ) ) {
return true;
}
if( dist < MAX_CLAIRVOYANCE && dist < clairvoyance() ) {
return true;
}
Expand Down

0 comments on commit d18fbb5

Please sign in to comment.