diff --git a/src/sbbs3/answer.cpp b/src/sbbs3/answer.cpp
index 939e529c8ab8a10f16fda22fb989a1eb9db60832..ffec23504eb07a0d3021764a5b37b9705251c1db 100644
--- a/src/sbbs3/answer.cpp
+++ b/src/sbbs3/answer.cpp
@@ -605,9 +605,6 @@ bool sbbs_t::answer()
 			        "\x1b[6n"   /* Get cursor position */
 			        "\x1b[u"    /* restore cursor position */
 			        "\x1b[!_"   /* RIP? */
-		#ifdef SUPPORT_ZUULTERM
-			        "\x1b[30;40m\xc2\x9f""Zuul.connection.write('\\x1b""Are you the gatekeeper?')\xc2\x9c"  /* ZuulTerm? */
-		#endif
 			        "\r"        /* Move cursor left */
 			        "\xef\xbb\xbf"  // UTF-8 Zero-width non-breaking space
 			        "\x1b[6n"   /* Get cursor position (again) */
@@ -651,14 +648,6 @@ bool sbbs_t::answer()
 					logline("@R", strstr(str, "RIPSCRIP"));
 					autoterm |= (RIP | COLOR | ANSI);
 				}
-		#ifdef SUPPORT_ZUULTERM
-				else if (strstr(str, "Are you the gatekeeper?"))  {
-					if (terminal[0] == 0)
-						SAFECOPY(terminal, "HTML");
-					logline("@H", strstr(str, "Are you the gatekeeper?"));
-					autoterm |= HTML;
-				}
-		#endif
 
 				char*    tokenizer = NULL;
 				char*    p = strtok_r(str, "\x1b", &tokenizer);
diff --git a/src/sbbs3/sbbsdefs.h b/src/sbbs3/sbbsdefs.h
index 78e8a5caf608c5df74e14477285ca153b824fa7a..bf2ee9c5ebdfb172ecd598ab4e59414d9f171d21 100644
--- a/src/sbbs3/sbbsdefs.h
+++ b/src/sbbs3/sbbsdefs.h
@@ -680,7 +680,7 @@ typedef enum {                      /* Values for xtrn_t.event				*/
 #define P_NOATCODES (1 << 2)      /* Don't allow @ codes                      */
 #define P_OPENCLOSE (1 << 3)      /* Open and close the file					*/
 #define P_NOPAUSE   (1 << 4)      /* Disable screen pause						*/
-#define P_HTML      (1 << 5)      /* Message is HTML							*/
+#define P_HTML      (1 << 5)      /* Unused - Message is HTML					*/
 #define P_NOCRLF    (1 << 6)      /* Don't prepend a CRLF	in printfile()		*/
 #define P_WORDWRAP  (1 << 7)      /* Word-wrap long lines for user's terminal	*/
 #define P_CPM_EOF   (1 << 8)      /* Ignore Ctrl-Z chars (CPM End-of-File)	*/