diff -upN ./README.txt ./README.txt
--- ./README.txt	2010-01-04 17:21:44.000000000 -0800
+++ ./README.txt	2010-01-04 17:21:44.000000000 -0800
@@ -39,7 +39,7 @@ Requirements
 ------------
 - Drupal 6.x
 - PHP 4.3.0 or greater
-- BadBehavior 2.1.x
+- BadBehavior 2.0.x
   (http://www.bad-behavior.ioerror.us/download/)
 
 Installation
@@ -57,9 +57,8 @@ Installation
    Here is the recommended steps to do this from the command line:
 
    cd /[path/to/site]/sites/all/libraries/
-   wget http://downloads.wordpress.org/plugin/bad-behavior.2.1.10.zip
-   unzip bad-behavior.2.1.10.zip
-   m bad-behavior.2.1.10.zip
+   wget http://downloads.wordpress.org/plugin/bad-behavior.2.0.36.zip
+   unzip -j bad-behavior.2.0.36.zip bad-behavior/bad-behavior/* -d bad-behavior
 
 3. Enable the module as usual from the Drupal admin>>modules page.
 
diff -upN ./badbehavior.module ./badbehavior.module
--- ./badbehavior.module	2010-01-04 19:25:33.000000000 -0800
+++ ./badbehavior.module	2010-01-04 19:25:33.000000000 -0800
@@ -84,10 +84,10 @@ function badbehavior_start_badbehavior()
  * Load BadBehavior library files.
  *
  * On first run, this will also include the required badbehavior.inc,
- * and core.inc.php files.
+ * core.inc.php, and version.inc.php files.
  *
  * @param $files
- *   An array of BadBehavior files in the BB2_CWD/bad-behavior/bad-behavior directory to
+ *   An array of BadBehavior files in the BB2_CWD/bad-behavior directory to
  *   include. The file type (.inc.php) will automatically be added to the file
  *   name.
  * @return
@@ -98,11 +98,11 @@ function badbehavior_load_includes($file
 
   if (!isset($included)) {
     $included = TRUE;
-    array_unshift($files, 'core');
+    array_unshift($files, 'core', 'version');
   }
 
   foreach ($files as $file) {
-    $file = BB2_CWD . "/bad-behavior/bad-behavior/$file.inc.php";
+    $file = BB2_CWD . "/bad-behavior/$file.inc.php";
     if (is_file($file)) {
       require_once $file;
     }
@@ -110,13 +110,7 @@ function badbehavior_load_includes($file
       return FALSE;
     }
   }
-  $filemain = BB2_CWD . "/bad-behavior/bad-behavior-mysql.php";
-    if (is_file($filemain)) {
-      require_once $filemain;
-    }
-    else {
-      return FALSE;
-    }
+
   return TRUE;
 }
 
Common subdirectories: ./translations and ./translations
