From 8a71ab16c27552f9a66b2f93a5d97baece09e2eb Mon Sep 17 00:00:00 2001 From: rswindell <> Date: Mon, 6 May 2019 10:43:27 +0000 Subject: [PATCH] 2 fixes related to turning on the auto-terminal user setting: - turn off the user.misc PETSCII flag (too) - don't copy the current autoterm flags into user.misc - this should no longer be necessary since the correct way to detect current terminal capabiilites is via calls to term_supports(). --- src/sbbs3/useredit.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/sbbs3/useredit.cpp b/src/sbbs3/useredit.cpp index 8bfc6929a2..f721ea22a8 100644 --- a/src/sbbs3/useredit.cpp +++ b/src/sbbs3/useredit.cpp @@ -900,8 +900,7 @@ void sbbs_t::maindflts(user_t* user) case 'T': if(yesno(text[AutoTerminalQ])) { user->misc|=AUTOTERM; - user->misc&=~(ANSI|RIP|WIP|HTML); - user->misc|=autoterm; + user->misc&=~(ANSI|RIP|WIP|HTML|PETSCII); } else user->misc&=~AUTOTERM; -- GitLab