diff --git a/commerce_discount.rules.inc b/commerce_discount.rules.inc
index 719344e..89d6d7f 100644
--- a/commerce_discount.rules.inc
+++ b/commerce_discount.rules.inc
@@ -789,7 +789,7 @@ function commerce_discount_percentage(EntityDrupalWrapper $wrapper, $discount_na
   $discount_wrapper = entity_metadata_wrapper('commerce_discount', $discount_name);
   $rate = $discount_wrapper->commerce_discount_offer->commerce_percentage->value() / 100;
   // Get the line item types to apply the discount to.
-  $line_item_types = variable_get('commerce_discount_line_item_types', array('product' => 'product'));
+  $line_item_types = variable_get('commerce_discount_line_item_types', array_diff(commerce_product_line_item_types(), array('product_discount')));
 
   switch ($wrapper->type()) {
     case 'commerce_order':
diff --git a/includes/commerce_discount.admin.inc b/includes/commerce_discount.admin.inc
index bbc25d9..644b0b0 100644
--- a/includes/commerce_discount.admin.inc
+++ b/includes/commerce_discount.admin.inc
@@ -388,7 +388,7 @@ function commerce_discount_settings() {
   $form['commerce_discount_line_item_types'] = array(
     '#type' => 'checkboxes',
     '#title' => t('Line item types to use for discounts'),
-    '#default_value' => variable_get('commerce_discount_line_item_types', array('product')),
+    '#default_value' => variable_get('commerce_discount_line_item_types', array_diff(commerce_product_line_item_types(), array('product_discount'))),
     '#options' => $types,
     '#description' => t('Select the line item types that will be taken into account for calculating the discount amounts in percentage offers.'),
   );
