dig: ignore tile shape if hidden

develop
jj 2013-04-12 15:14:35 +02:00
parent 2375f12fb7
commit 40f9f06360
1 changed files with 1 additions and 1 deletions

@ -120,7 +120,7 @@ bool dig (MapExtras::MapCache & MCache,
if(tileMaterial(tt) == tiletype_material::CONSTRUCTION && !des.bits.hidden)
return false;
df::tiletype_shape ts = tileShape(tt);
if (ts == tiletype_shape::EMPTY)
if (ts == tiletype_shape::EMPTY && !des.bits.hidden)
return false;
if(!des.bits.hidden)
{