mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-26 09:04:07 +01:00
Removed dupe struct and fixed zedit_level saving --Rumble
This commit is contained in:
parent
bf451a6ece
commit
b3f404c29c
4 changed files with 7 additions and 5 deletions
|
|
@ -218,7 +218,7 @@ int do_simple_move(struct char_data *ch, int dir, int need_specials_check)
|
|||
send_to_char(ch, "You are not ready to enter that area.\r\n");
|
||||
return (0);
|
||||
}
|
||||
if ((ZONE_MAXLVL(GET_ROOM_ZONE(going_to)) != -1) && ZONE_MAXLVL(GET_ROOM_ZONE(going_to)) < GET_LEVEL(ch)) {
|
||||
if ((GET_LEVEL(ch) < LVL_IMMORT) && (ZONE_MAXLVL(GET_ROOM_ZONE(going_to)) != -1) && ZONE_MAXLVL(GET_ROOM_ZONE(going_to)) < GET_LEVEL(ch)) {
|
||||
send_to_char(ch, "You are too powerful for that area.\r\n");
|
||||
return (0);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue