private boolean needBlimpLot(PlatMap platmap, int x, int z) {
   if (platmap.isNaturalLot(x, z)) {
     return platmap.isStructureLot(x - 1, z)
         || platmap.isStructureLot(x + 1, z)
         || platmap.isStructureLot(x, z - 1)
         || platmap.isStructureLot(x, z + 1);
   } else return false;
 }