From 10f84a7eaef722cdc843b17a06c42bb6114de2fa Mon Sep 17 00:00:00 2001 From: Rumble Date: Thu, 22 Aug 2013 18:00:31 -0400 Subject: [PATCH] Fixed typo --- src/act.informative.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/act.informative.c b/src/act.informative.c index 6a4c15d..dc49857 100644 --- a/src/act.informative.c +++ b/src/act.informative.c @@ -2150,7 +2150,7 @@ ACMD(do_toggle) break; case SCMD_PAGELENGTH: if (!*arg2) - send_to_char(ch, "You current page length is set to %d lines.", GET_PAGE_LENGTH(ch)); + send_to_char(ch, "Your current page length is set to %d lines.", GET_PAGE_LENGTH(ch)); else if (is_number(arg2)) { GET_PAGE_LENGTH(ch) = MIN(MAX(atoi(arg2), 5), 255); send_to_char(ch, "Okay, your page length is now set to %d lines.", GET_PAGE_LENGTH(ch));