From af43265c071e6836c064a42a843599c814708ef9 Mon Sep 17 00:00:00 2001 From: shennetsind Date: Fri, 11 May 2012 22:17:11 +0000 Subject: Fixed bugreport:4955 @changegm no longer functions within gvg castles, special thanks to masao git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@16099 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/atcommand.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/map/atcommand.c b/src/map/atcommand.c index a20af53f7..a3212d43f 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -5683,20 +5683,17 @@ ACMD_FUNC(changegm) struct map_session_data *pl_sd; nullpo_retr(-1, sd); - if (sd->status.guild_id == 0 || (g = guild_search(sd->status.guild_id)) == NULL || strcmp(g->master,sd->status.name)) - { + if (sd->status.guild_id == 0 || (g = guild_search(sd->status.guild_id)) == NULL || strcmp(g->master,sd->status.name)) { clif_displaymessage(fd, "You need to be a Guild Master to use this command."); return -1; } - if( map[sd->bl.m].flag.guildlock ) - { + if( map[sd->bl.m].flag.guildlock || map[sd->bl.m].flag.gvg_castle ) { clif_displaymessage(fd, "You cannot change guild leaders on this map."); return -1; } - if( !message[0] ) - { + if( !message[0] ) { clif_displaymessage(fd, "Command usage: @changegm "); return -1; } -- cgit v1.2.3-60-g2f50