Added send_cannot_edit, removed LVL_FREEZE, and fixed fight_messages. --Rumble

This commit is contained in:
Rumble
2007-03-04 20:18:13 +00:00
parent f2bb44ceb1
commit 42377c319a
37 changed files with 6212 additions and 7018 deletions

View File

@@ -426,3 +426,11 @@ int can_edit_zone(struct char_data *ch, zone_rnum rnum)
return (FALSE);
}
void send_cannot_edit(struct char_data *ch, zone_vnum zone)
{
send_to_char(ch, "You do not have permission to edit zone %d.", zone);
if (GET_OLC_ZONE(ch) != NOWHERE)
send_to_char(ch, " Try zone %d.", GET_OLC_ZONE(ch));
send_to_char(ch, "\r\n");
}