Index: README.txt
===================================================================
--- README.txt	(revision 9970)
+++ README.txt	(working copy)
@@ -102,7 +102,9 @@
 ==========================
 
 The node queue module provides two actions, so that workflow can add and
-remove items from queues.
+remove items from queues. Note that if you have Workflow NG installed alongside
+Actions, the Actions Nodequeue integration will take priority as when both are
+enabled, there is an API conflict.
 
 
 
Index: nodequeue.module
===================================================================
--- nodequeue.module	(revision 9970)
+++ nodequeue.module	(working copy)
@@ -20,16 +20,10 @@
   if (module_exists('actions')) {
     include_once drupal_get_path('module', 'nodequeue') . '/nodequeue.actions.inc';
   }
-
-  if (module_exists('workflow_ng')) {
-    if (module_exists('actions')) {
-      // Workflow_ng and actions module can't work together becuase of API collision.
-      drupal_set_message(t('Nodequeue\'s integration with workflow_ng module couldn\'t initialize as the Actions module is enabled. Actions module and workflow_ng can\'t be enabled at the same time.'));
-    }
-    else {
-      include_once drupal_get_path('module', 'nodequeue') . '/nodequeue.workflow_ng.inc';	
-    }
+  else if (module_exists('workflow_ng')) {
+    include_once drupal_get_path('module', 'nodequeue') . '/nodequeue.workflow_ng.inc';
   }
+
   if (module_exists('views')) {
     include_once drupal_get_path('module', 'nodequeue') . '/nodequeue.views.inc';
   }
