summaryrefslogtreecommitdiff
path: root/src/map/intif.cpp
diff options
context:
space:
mode:
authormekolat <mekolat@users.noreply.github.com>2015-05-07 11:22:25 -0400
committermekolat <mekolat@users.noreply.github.com>2015-05-07 11:22:25 -0400
commitd582d06bfb0ea3239d1c61b355ab3427318e915d (patch)
treed285a016f1c217ad0b47a92253d17e1ad3a35571 /src/map/intif.cpp
parent784ca0b6ec91ecd66019ea915e897ecca4adbed0 (diff)
downloadtmwa-d582d06bfb0ea3239d1c61b355ab3427318e915d.tar.gz
tmwa-d582d06bfb0ea3239d1c61b355ab3427318e915d.tar.bz2
tmwa-d582d06bfb0ea3239d1c61b355ab3427318e915d.tar.xz
tmwa-d582d06bfb0ea3239d1c61b355ab3427318e915d.zip
wait for the player to be added to block list
Diffstat (limited to 'src/map/intif.cpp')
-rw-r--r--src/map/intif.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/intif.cpp b/src/map/intif.cpp
index a5709ef..d08b94f 100644
--- a/src/map/intif.cpp
+++ b/src/map/intif.cpp
@@ -359,7 +359,7 @@ void mapif_parse_WisToGM(Session *, const Packet_Head<0x3803>& head, AString& me
if (!s2)
continue;
dumb_ptr<map_session_data> pl_sd = dumb_ptr<map_session_data>(static_cast<map_session_data *>(s2->session_data.get()));
- if (pl_sd && pl_sd->state.auth)
+ if (pl_sd && pl_sd->state.auth && !pl_sd->state.connect_new)
{
if (pc_isGM(pl_sd).satisfies(min_gm_level))
clif_wis_message(s2, Wisp_name, message);