diff options
author | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-31 07:29:51 +0000 |
---|---|---|
committer | Lance <Lance@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-05-31 07:29:51 +0000 |
commit | 57867e8e384ed5b6921b71d8aa7a594d18bc889e (patch) | |
tree | 8078aacd3214c0ca66886554920810dd193196f9 | |
parent | 7da23a6ea450d2ac2a8a7d5514c1015bc621c3e2 (diff) | |
download | hercules-57867e8e384ed5b6921b71d8aa7a594d18bc889e.tar.gz hercules-57867e8e384ed5b6921b71d8aa7a594d18bc889e.tar.bz2 hercules-57867e8e384ed5b6921b71d8aa7a594d18bc889e.tar.xz hercules-57867e8e384ed5b6921b71d8aa7a594d18bc889e.zip |
Removed debug messages (oops)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@6881 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | npc/scripts_custom.conf | 4 | ||||
-rw-r--r-- | src/login/login.c | 1 |
3 files changed, 4 insertions, 3 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 40bce573e..508c3686b 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,6 +5,8 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2006/05/31
* [Fixed]:
+ - Latest client support completed! [Lance]
+ * [Fixed]:
- Missing #include for cbasetypes.h in login server SQL.
- Logic errors in run_script [Lance]
* [Added]:
diff --git a/npc/scripts_custom.conf b/npc/scripts_custom.conf index edb1be2b2..94a93d842 100644 --- a/npc/scripts_custom.conf +++ b/npc/scripts_custom.conf @@ -90,8 +90,8 @@ npc: npc/custom/jobs/jobmaster.txt //npc: npc/custom/Lance/FR_WeatherController.c
//npc: npc/custom/Lance/FR_MailSystem.c
//npc: npc/sample/npc_dynamic_shop.txt
-npc: npc/sample/monster_controller.cpp
-npc: npc/custom/Lance/Sentry.cpp
+//npc: npc/sample/monster_controller.cpp
+//npc: npc/custom/Lance/Sentry.cpp
// --------------------------------------------------------------
// --------------------------------------------------------------
diff --git a/src/login/login.c b/src/login/login.c index 024dc8199..c74995850 100644 --- a/src/login/login.c +++ b/src/login/login.c @@ -3112,7 +3112,6 @@ int parse_login(int fd) { memcpy(account.passwd, RFIFOP(fd,30), NAME_LENGTH);
account.passwd[23] = '\0';
remove_control_chars((unsigned char *)account.passwd);
- ShowInfo("Login packet %s and %s with version %d\n", account.userid, account.passwd, account.version);
} else {
login_log("Request for connection (encryption mode) of %s (ip: %s)." RETCODE, account.userid, ip);
// If remove control characters from received password encrypted by md5,
|