Fixed a few typos (some cosmetic, some functional) (#32)

This commit is contained in:
srhuston 2017-11-05 22:06:58 -05:00 committed by wyld-sw
parent 08f5eb8947
commit 38cdaf535d
3 changed files with 5 additions and 5 deletions

View file

@ -2850,7 +2850,7 @@ set ant 4600
set zodiac 5701
set grave 7401
set zamba 7500
set gidean 7801
set gideon 7801
set glumgold 8301
set duke 8660
set oasis 9000

View file

@ -279,7 +279,7 @@ set ant 4600
set zodiac 5701
set grave 7401
set zamba 7500
set gidean 7801
set gideon 7801
set glumgold 8301
set duke 8660
set oasis 9000

View file

@ -400,7 +400,7 @@ ACMD(do_group)
send_to_char(ch, "But you are already part of a group.\r\n");
return;
} else if (!GROUP(vict)) {
act("$E$u is not a part of a group!", FALSE, ch, 0, vict, TO_CHAR);
act("$E$u is not part of a group!", FALSE, ch, 0, vict, TO_CHAR);
return;
} else if (!IS_SET(GROUP_FLAGS(GROUP(vict)), GROUP_OPEN)) {
send_to_char(ch, "That group isn't accepting members.\r\n");
@ -430,7 +430,7 @@ ACMD(do_group)
leave_group(vict);
} else if (is_abbrev(buf, "regroup")) {
if (!GROUP(ch)) {
send_to_char(ch, "But you aren't apart of a group!\r\n");
send_to_char(ch, "But you aren't part of a group!\r\n");
return;
}
vict = GROUP_LEADER(GROUP(ch));
@ -443,7 +443,7 @@ ACMD(do_group)
} else if (is_abbrev(buf, "leave")) {
if (!GROUP(ch)) {
send_to_char(ch, "But you aren't apart of a group!\r\n");
send_to_char(ch, "But you aren't part of a group!\r\n");
return;
}