diff options
author | wizputer <wizputer@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-28 00:54:09 +0000 |
---|---|---|
committer | wizputer <wizputer@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2004-11-28 00:54:09 +0000 |
commit | eb542a6335c6b6c91a9429f8975e7feab84ce4ff (patch) | |
tree | 10ad42812059a56da8352862e6b10b3b8a1c8498 | |
parent | b9a5d963a05a94ab96641c03442f51abf990af4b (diff) | |
download | hercules-eb542a6335c6b6c91a9429f8975e7feab84ce4ff.tar.gz hercules-eb542a6335c6b6c91a9429f8975e7feab84ce4ff.tar.bz2 hercules-eb542a6335c6b6c91a9429f8975e7feab84ce4ff.tar.xz hercules-eb542a6335c6b6c91a9429f8975e7feab84ce4ff.zip |
Fixed Map crash when person uses global message hacks
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@394 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog.txt | 1 | ||||
-rw-r--r-- | src/map/clif.c | 9 |
2 files changed, 8 insertions, 2 deletions
diff --git a/Changelog.txt b/Changelog.txt index 45102a172..e30a15ec9 100644 --- a/Changelog.txt +++ b/Changelog.txt @@ -1,5 +1,6 @@ Date Added 11/27 + * Fixed Map crash when person uses global message hacks [Wizputer] * Fixed online system, online column works and prevent double login at the login server [Wizputer] * Fixed some compile time errors associated with showmsg [MouseJstr] * Added get_svn_revision() in core.c [MC Cameri] diff --git a/src/map/clif.c b/src/map/clif.c index 9163671a8..50de1e108 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -7647,8 +7647,8 @@ void clif_parse_GlobalMessage(int fd, struct map_session_data *sd) { // S 008c < char *buf; nullpo_retv(sd); - if (is_charcommand(fd, sd, RFIFOP(fd,4),0)!= CharCommand_None) return; if ((is_atcommand(fd, sd, RFIFOP(fd,4), 0) != AtCommand_None) || + (is_charcommand(fd, sd, RFIFOP(fd,4),0)!= CharCommand_None) || (sd->sc_data && (sd->sc_data[SC_BERSERK].timer != -1 || //バーサーク時は会話も不可 sd->sc_data[SC_NOCHAT].timer != -1 ))) //チャット禁止 @@ -7662,7 +7662,7 @@ void clif_parse_GlobalMessage(int fd, struct map_session_data *sd) { // S 008c < printf("Hack on global message: character '%s' (account: %d), use an other name to send a (normal) message.\n", sd->status.name, sd->status.account_id); // information is sended to all online GM - sprintf(message, "Hack on global message (normal message): character '%s' (account: %d) uses an other name.", sd->status.name, sd->status.account_id); + sprintf(message, "Hack on global message (normal message): character '%s' (account: %d) uses another name.", sd->status.name, sd->status.account_id); intif_wis_message_to_gm(wisp_server_name, battle_config.hack_info_GM_level, message, strlen(message) + 1); if (strlen(RFIFOP(fd,4)) == 0) strcpy(message, " This player sends a void name and a void message."); @@ -7680,6 +7680,11 @@ void clif_parse_GlobalMessage(int fd, struct map_session_data *sd) { // S 008c < if (battle_config.ban_spoof_namer > 0) { chrif_char_ask_name(-1, sd->status.name, 2, 0, 0, 0, 0, battle_config.ban_spoof_namer, 0); // type: 2 - ban (year, month, day, hour, minute, second) clif_setwaitclose(fd); // forced to disconnect because of the hack + + if(message) free(message); + if(buf) free(buf); + + return; } // but for the hacker, we display on his screen (he see/look no difference). } else { |