Skip to content

Commit

Permalink
Silence more CT errors
Browse files Browse the repository at this point in the history
  • Loading branch information
kevingranade committed Jul 10, 2021
1 parent fea3a81 commit c830c07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/creature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ static const efftype_id effect_zapped( "zapped" );

static const species_id species_ROBOT( "ROBOT" );

static const proficiency_id proficiency_prof_spotting( "prof_spotting" );

const std::map<std::string, creature_size> Creature::size_map = {
{"TINY", creature_size::tiny},
{"SMALL", creature_size::small},
Expand Down
4 changes: 2 additions & 2 deletions tests/map_memory_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ TEST_CASE( "map_memory_keeps_region", "[map_memory]" )
CHECK( memory.prepare_region( p1, p4 ) );
CHECK( !memory.prepare_region( p2, p3 ) );
CHECK( memory.prepare_region(
tripoint( p2.x, p2.y, -p2.z ),
tripoint( p3.x, p3.y, -p3.z )
tripoint( p2.xy(), -p2.z ),
tripoint( p3.xy(), -p3.z )
) );
}

Expand Down

0 comments on commit c830c07

Please sign in to comment.