diff --git a/src/chat/ChatWindow.java b/src/chat/ChatWindow.java
index 391f948d80f7e90a536814cf8737ff874a827d9e..fe8856df0d3f7075e3e148e5bad853b727ca0644 100644
--- a/src/chat/ChatWindow.java
+++ b/src/chat/ChatWindow.java
@@ -30,11 +30,6 @@ import org.alicebot.ab.MagicBooleans;
 import org.alicebot.ab.MagicStrings;
 import org.alicebot.ab.PCAIMLProcessorExtension;
 
-import com.google.code.chatterbotapi.ChatterBot;
-import com.google.code.chatterbotapi.ChatterBotFactory;
-import com.google.code.chatterbotapi.ChatterBotSession;
-import com.google.code.chatterbotapi.ChatterBotType;
-
 import cse332.misc.WordReader;
 import javafx.application.Platform;
 import javafx.embed.swing.JFXPanel;
@@ -53,7 +48,6 @@ public class ChatWindow {
     private final StringBuilder content;
     public String theirUsername;
     public Chat esession;
-    public ChatterBotSession csession;
     private final WordSuggestor[] markov;
     private final UMessageServerConnection connection;
     private final SpellingCorrector checker;
@@ -86,15 +80,6 @@ public class ChatWindow {
 
             this.esession = new Chat(bot);
         }
-        else if (this.theirUsername.equals("cleverbot")) {
-            ChatterBotFactory factory = new ChatterBotFactory();
-            ChatterBot bot1;
-            try {
-                bot1 = factory.create(ChatterBotType.CLEVERBOT);
-                this.csession = bot1.createSession();
-            } catch (Exception e) {
-            }
-        }
     }
 
     /**
@@ -388,13 +373,6 @@ public class ChatWindow {
             receiveMessage(this.esession.multisentenceRespond(msg));
             return;
         }
-        else if (this.theirUsername.equals("cleverbot")) {
-            try {
-                receiveMessage(this.csession.think(msg));
-                return;
-            } catch (Exception e) {
-            }
-        }
         else {
             try {
                 this.connection.m_channel(this.theirUsername, msg);