Ejemplo n.º 1
0
        public static bool IsNotVanillaBombable(int tile_x, int tile_y)
        {
            Tile tile = Framing.GetTileSafely(tile_x, tile_y);

            return(!TileLoader.CanExplode(tile_x, tile_y) || TileHelpers.IsNotVanillaBombableType(tile));
        }
Ejemplo n.º 2
0
 public static bool IsNotBombableType(Tile tile)
 {
     return(TileHelpers.IsNotVanillaBombableType(tile));
 }