diff options
author | MadCamel <madcamel@gmail.com> | 2009-08-18 17:25:46 -0400 |
---|---|---|
committer | MadCamel <madcamel@gmail.com> | 2009-08-18 17:25:46 -0400 |
commit | b51bc31600679344486d8e8cfe9d525e58bfc0bb (patch) | |
tree | 9341df61fe1987c087137a75e8a75b677e4961f6 | |
parent | f7059966bd6a06c3697e0d0721be6b4c08acce22 (diff) | |
download | tmwa-b51bc31600679344486d8e8cfe9d525e58bfc0bb.tar.gz tmwa-b51bc31600679344486d8e8cfe9d525e58bfc0bb.tar.bz2 tmwa-b51bc31600679344486d8e8cfe9d525e58bfc0bb.tar.xz tmwa-b51bc31600679344486d8e8cfe9d525e58bfc0bb.zip |
Revert 3b44872c6d1601abe33115a92cbb8e3e13d2bea5
Dead players can talk again
-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 14f2770..a53177d 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -6506,7 +6506,7 @@ void clif_parse_GlobalMessage(int fd, struct map_session_data *sd) { // S 008c < if (tmw_CheckChatSpam(sd, RFIFOP(fd,4))) return; - if ((malformed)||(pc_isdead(sd))) { + if (malformed) { free(buf); return; } |