From 9490f24bab2ee6075034d85249044b7145ca0879 Mon Sep 17 00:00:00 2001 From: mysticbbs Date: Sat, 30 Jun 2012 23:56:07 -0400 Subject: [PATCH] Group editor wouldn't create if there were no groups --- mystic/HISTORY.txt | 3 +++ mystic/bbs_cfg_groups.pas | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/mystic/HISTORY.txt b/mystic/HISTORY.txt index 514db17..782649b 100644 --- a/mystic/HISTORY.txt +++ b/mystic/HISTORY.txt @@ -4232,6 +4232,9 @@ EVERY - Execute each time a menu is display, before it is displayed AFTER - Execute after the menu is displayed but before the prompt + And hopefully soon I can get in the TIMER auto-exec from Mystic 2 which + is by far the most badass of all of them! :) + + Added new prompt #490 to the themes. This prompt defines the message base header flags which were previously hard coded. Each flag is one word separated by a space: diff --git a/mystic/bbs_cfg_groups.pas b/mystic/bbs_cfg_groups.pas index aa19915..e645a12 100644 --- a/mystic/bbs_cfg_groups.pas +++ b/mystic/bbs_cfg_groups.pas @@ -108,7 +108,7 @@ Begin Case List.ExitCode of '/' : Case GetCommandOption(10, 'I-Insert|D-Delete|C-Copy|P-Paste|') of - 'I' : If List.Picked > 1 Then Begin + 'I' : If List.Picked > 0 Then Begin GroupFile.RecordInsert (List.Picked); Group.Name := 'New Group';