about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-09-18 00:15:32 +0100
committerJames Booth <boothj5@gmail.com>2014-09-18 00:15:32 +0100
commitab3fde185d13f094c7a4c33af61a0f7881cb0250 (patch)
treeacf92d01f47e24fe02269693ac567a361919b932 /src
parenta905ce18a3419ccdec86334d624eeef38691b2b6 (diff)
downloadprofani-tty-ab3fde185d13f094c7a4c33af61a0f7881cb0250.tar.gz
Fixed messages for new rooms
Diffstat (limited to 'src')
-rw-r--r--src/ui/core.c10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/ui/core.c b/src/ui/core.c
index 5a21f7ff..22f3be93 100644
--- a/src/ui/core.c
+++ b/src/ui/core.c
@@ -1616,8 +1616,16 @@ _ui_room_requires_config(const char * const room_jid)
             ui_index = 0;
         }
 
+        win_save_print(window, '-', NULL, 0, 0, "", "");
+        win_save_vprint(window, '!', NULL, 0, COLOUR_ROOMINFO, "",
+            "Room requires configuration.");
+        win_save_vprint(window, '!', NULL, 0, COLOUR_ROOMINFO, "",
+            "Use '/room accept' to accept the defaults");
         win_save_vprint(window, '!', NULL, 0, COLOUR_ROOMINFO, "",
-            "Room requires configuration, use '/room config accept' or '/room config destroy'");
+            "Use '/room destroy' to cancel and destroy the room");
+        win_save_vprint(window, '!', NULL, 0, COLOUR_ROOMINFO, "",
+            "Use '/room config' to edit the room configuration");
+        win_save_print(window, '-', NULL, 0, 0, "", "");
 
         // currently in groupchat window
         if (wins_is_current(window)) {