mirror of
https://github.com/tbamud/tbamud.git
synced 2025-12-24 03:00:13 +01:00
Fixed pardon. --Rumble
This commit is contained in:
parent
c9c7ed9e7a
commit
b8b3659bcf
2 changed files with 3 additions and 1 deletions
|
|
@ -35,6 +35,8 @@ export (QQ's a zone into a tarball)t
|
|||
Xlist (mlist, olist, rlist, zlist, slist, tlist, qlist)
|
||||
(lots of major bugfixes too)
|
||||
tbaMUD 3.59
|
||||
[Jan 25 2009] - Rumble
|
||||
Fixed pardon. (thanks Echos-Ironcastle)
|
||||
[Jan 24 2009] - Rumble
|
||||
Fixed command queue cancelling "--" from cancelling the next command. (thanks Frenze/Ogdin)
|
||||
Fixed object timer values from not saving. (thanks Stoneheart)
|
||||
|
|
|
|||
|
|
@ -2267,7 +2267,7 @@ ACMD(do_wizutil)
|
|||
GET_DEX(vict), GET_CON(vict), GET_CHA(vict));
|
||||
break;
|
||||
case SCMD_PARDON:
|
||||
if (!PLR_FLAGGED(vict, PLR_THIEF) || !PLR_FLAGGED(vict, PLR_KILLER)) {
|
||||
if (!PLR_FLAGGED(vict, PLR_THIEF) && !PLR_FLAGGED(vict, PLR_KILLER)) {
|
||||
send_to_char(ch, "Your victim is not flagged.\r\n");
|
||||
return;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue