Skip to content

Commit

Permalink
Remove restrictions on in-city special size
Browse files Browse the repository at this point in the history
  • Loading branch information
NotFuji committed Dec 23, 2018
1 parent a50ac89 commit 38d8c6b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/regional_settings.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -847,12 +847,13 @@ void building_bin::finalize()
const overmap_special &cur_special = current_id.obj();
for( const overmap_special_terrain &ter : cur_special.terrains ) {
const tripoint &p = ter.p;
/*
if( p.x != 0 || p.y != 0 ) {
debugmsg( "Tried to add city building %s, but it has a part with non-zero X or Y coordinates (not supported yet)",
current_id.c_str() );
skip = true;
break;
}
}*/
}
if( skip ) {
continue;
Expand Down

0 comments on commit 38d8c6b

Please sign in to comment.