From 410efc24064397484559b1763789ecbb44d4d045 Mon Sep 17 00:00:00 2001 From: MadCamel Date: Wed, 1 Dec 2010 11:34:09 -0500 Subject: Fixed off-by-one error in IP packet level calculation. --- src/map/clif.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/map/clif.c b/src/map/clif.c index 67090e3..b4b2425 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7107,7 +7107,7 @@ void clif_parse_GetCharNameRequest (int fd, struct map_session_data *sd) } - if (pc_isGM(sd) > battle_config.hack_info_GM_level) + if (pc_isGM(sd) >= battle_config.hack_info_GM_level) { in_addr_t ip = ssd->ip; WFIFOW (fd, 0) = 0x20C; -- cgit v1.2.3-60-g2f50