diff options
Diffstat (limited to 'src/map')
-rw-r--r-- | src/map/atcommand.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 9d069e0c2..dce7441df 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -7963,6 +7963,13 @@ ACMD_FUNC(accept) return 0; } + if( duel_list[sd->duel_invite].max_players_limit > 0 && duel_list[sd->duel_invite].members_count >= duel_list[sd->duel_invite].max_players_limit ) + { + // "Duel: Limit of players is reached." + clif_displaymessage(fd, msg_txt(351)); + return 0; + } + duel_accept(sd->duel_invite, sd); // "Duel: Invitation has been accepted." clif_displaymessage(fd, msg_txt(361)); |