Fixed hands full message for Immortals.
This commit is contained in:
@@ -34,6 +34,8 @@ OLC copy and delete options.
|
|||||||
export (QQ's a zone into a tarball)t
|
export (QQ's a zone into a tarball)t
|
||||||
Xlist (mlist, olist, rlist, zlist, slist, tlist, qlist)
|
Xlist (mlist, olist, rlist, zlist, slist, tlist, qlist)
|
||||||
(lots of major bugfixes too)
|
(lots of major bugfixes too)
|
||||||
|
[Jan 15 2009] - Fizban
|
||||||
|
Immortals can now never have their hands full when you attempt to hand them an item.
|
||||||
[Jan 09 2009] - Fizban
|
[Jan 09 2009] - Fizban
|
||||||
Fixed a bug in do_rescue allowing players to get twice as many attacks per round. (thanks Zordrac)
|
Fixed a bug in do_rescue allowing players to get twice as many attacks per round. (thanks Zordrac)
|
||||||
Fixed Bug Where Questmaster rnums didn't previously update. (thanks Tails)
|
Fixed Bug Where Questmaster rnums didn't previously update. (thanks Tails)
|
||||||
|
|||||||
@@ -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);
|
act("You can't let go of $p!! Yeech!", FALSE, ch, obj, 0, TO_CHAR);
|
||||||
return;
|
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);
|
act("$N seems to have $S hands full.", FALSE, ch, 0, vict, TO_CHAR);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user