diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-30 13:26:34 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-07-12 13:39:11 +0300 |
commit | 245cab6b53ef3062608546a6fdb79af23f4e9780 (patch) | |
tree | dcd91e1ae53bf0dfec7462a812d40b03e6037907 /src/map/clif.c | |
parent | 48bbaaab4f73b0eb4416898bed286bcb5393f9ec (diff) | |
download | hercules-245cab6b53ef3062608546a6fdb79af23f4e9780.tar.gz hercules-245cab6b53ef3062608546a6fdb79af23f4e9780.tar.bz2 hercules-245cab6b53ef3062608546a6fdb79af23f4e9780.tar.xz hercules-245cab6b53ef3062608546a6fdb79af23f4e9780.zip |
Remove useless checks from map server.
Diffstat (limited to 'src/map/clif.c')
-rw-r--r-- | src/map/clif.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c index f01b59fda..5617c318b 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -12746,7 +12746,7 @@ bool clif_sub_guild_invite(int fd, struct map_session_data *sd, struct map_sessi return false; } - if ( t_sd && t_sd->state.noask ) {// @noask [LuzZza] + if (t_sd->state.noask) {// @noask [LuzZza] clif->noask_sub(sd, t_sd, 2); return false; } |