From 388a2a7e0975ec50271e9bbbc52af107076ca0d1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Deuc=D0=B5?= <shurd@sasktel.net>
Date: Mon, 31 Mar 2025 13:18:36 -0400
Subject: [PATCH] Remove more ZuulTerm stuff.

---
 src/sbbs3/answer.cpp | 11 -----------
 src/sbbs3/sbbsdefs.h |  2 +-
 2 files changed, 1 insertion(+), 12 deletions(-)

diff --git a/src/sbbs3/answer.cpp b/src/sbbs3/answer.cpp
index 939e529c8a..ffec23504e 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 78e8a5caf6..bf2ee9c5eb 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)	*/
-- 
GitLab