From a6c0c39e51a4c197e35a2a5fbc907a9252ce5a1a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Wilfried=20G=C3=B6esgens?= Date: Sun, 15 Aug 2010 13:02:43 +0000 Subject: [PATCH] * set_room_policy(): use modern representations of the policy names --- webcit/roomops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/webcit/roomops.c b/webcit/roomops.c index 56e3f2041..79323c9f8 100644 --- a/webcit/roomops.c +++ b/webcit/roomops.c @@ -2942,17 +2942,17 @@ void set_room_policy(void) { return; } - serv_printf("SPEX room|%d|%d", ibstr("roompolicy"), ibstr("roomvalue")); + serv_printf("SPEX roompolicy|%d|%d", ibstr("roompolicy"), ibstr("roomvalue")); serv_getln(buf, sizeof buf); strcpy(WC->ImportantMessage, &buf[4]); if (WC->axlevel >= 6) { strcat(WC->ImportantMessage, "
\n"); - serv_printf("SPEX floor|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); + serv_printf("SPEX floorpolicy|%d|%d", ibstr("floorpolicy"), ibstr("floorvalue")); serv_getln(buf, sizeof buf); strcat(WC->ImportantMessage, &buf[4]); } - + FlushRoomlist(); http_transmit_thing(ChrPtr(do_template("room_edit", NULL)), 0); } -- 2.30.2