mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-26 03:58:49 +01:00
Fixed hands full message for Immortals.
This commit is contained in:
parent
bc7ab33a02
commit
a27d84f0ee
2 changed files with 3 additions and 1 deletions
|
|
@ -603,7 +603,7 @@ static void perform_give(struct char_data *ch, struct char_data *vict,
|
|||
act("You can't let go of $p!! Yeech!", FALSE, ch, obj, 0, TO_CHAR);
|
||||
return;
|
||||
}
|
||||
if (IS_CARRYING_N(vict) >= CAN_CARRY_N(vict)) {
|
||||
if (IS_CARRYING_N(vict) >= CAN_CARRY_N(vict) && GET_LEVEL(ch) < LVL_IMMORT) {
|
||||
act("$N seems to have $S hands full.", FALSE, ch, 0, vict, TO_CHAR);
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue