summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
authorskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-27 20:38:16 +0000
committerskotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-11-27 20:38:16 +0000
commit575c8b8ccde247ae48ba7bf84c9931034e9eab48 (patch)
tree0028059fe9fc37ff28a771e7c5e3e240b5d94e58 /src/map/clif.c
parentce59424ec0b207d8d3f27ef88e433c0f24647418 (diff)
downloadhercules-575c8b8ccde247ae48ba7bf84c9931034e9eab48.tar.gz
hercules-575c8b8ccde247ae48ba7bf84c9931034e9eab48.tar.bz2
hercules-575c8b8ccde247ae48ba7bf84c9931034e9eab48.tar.xz
hercules-575c8b8ccde247ae48ba7bf84c9931034e9eab48.zip
- Fixed clif.c dumping unknown packets by default... (oops, used an #ifdef where an #if had to go)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@9335 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 097dd3c77..be3309aa3 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -11968,7 +11968,7 @@ int clif_parse(int fd) {
) //Only execute the function when there's an sd (except for debug/wanttoconnect packets)
packet_db[packet_ver][cmd].func(fd, sd);
}
-#ifdef DUMP_UNKNOWN_PACKET
+#if DUMP_UNKNOWN_PACKET
else if (battle_config.error_log)
{
int i;