diff options
author | Haru <haru@dotalux.com> | 2019-09-23 01:09:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-23 01:09:00 +0200 |
commit | 7121899a562856863984ce90268e9af37769b346 (patch) | |
tree | 8f2c17a1ae78dad6a657866720523d1691f25daf /src/map/guild.c | |
parent | ab1127c269daa390f1648f6e8615fe8c209d879e (diff) | |
parent | 20a1f4facea1dc58112b5d2609533dc554b0574b (diff) | |
download | hercules-7121899a562856863984ce90268e9af37769b346.tar.gz hercules-7121899a562856863984ce90268e9af37769b346.tar.bz2 hercules-7121899a562856863984ce90268e9af37769b346.tar.xz hercules-7121899a562856863984ce90268e9af37769b346.zip |
Merge pull request #2523 from MishimaHaruna/name-partial-match
Name partial match
Diffstat (limited to 'src/map/guild.c')
-rw-r--r-- | src/map/guild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/guild.c b/src/map/guild.c index 3191515f7..2faf60e2b 100644 --- a/src/map/guild.c +++ b/src/map/guild.c @@ -654,7 +654,7 @@ static int guild_recv_info(const struct guild *sg) before=*sg; //Perform the check on the user because the first load guild->check_member(sg); - if ((sd = map->nick2sd(sg->master)) != NULL) { + if ((sd = map->nick2sd(sg->master, false)) != NULL) { //If the guild master is online the first time the guild_info is received, //that means he was the first to join, so apply guild skill blocking here. if( battle_config.guild_skill_relog_delay == 1) |