Skip to content

Commit

Permalink
Fix COMPFAIL_DESTROY_DATA range
Browse files Browse the repository at this point in the history
  • Loading branch information
Qrox committed Jan 24, 2020
1 parent 9f34db2 commit a6a9ff1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/computer_session.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1341,7 +1341,7 @@ void computer_session::failure_destroy_blood()
void computer_session::failure_destroy_data()
{
print_error( _( "ERROR: ACCESSING DATA MALFUNCTION" ) );
for( const tripoint &p : g->m.points_in_radius( g->u.pos(), 24 ) ) {
for( const tripoint &p : g->m.points_in_radius( g->u.pos(), 2 ) ) {
if( g->m.ter( p ) == t_floor_blue ) {
map_stack items = g->m.i_at( p );
if( items.empty() ) {
Expand Down

0 comments on commit a6a9ff1

Please sign in to comment.