diff options
author | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-09 13:37:53 +0000 |
---|---|---|
committer | MasterOfMuppets <MasterOfMuppets@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-06-09 13:37:53 +0000 |
commit | b1f3d6ee46b54e935f6e4bf589c3216830904a3f (patch) | |
tree | acf4174be03e4b7a041211a8075721cb446e4c15 | |
parent | 7c556543a5c5687954cf75374f7cb6f5c9149afb (diff) | |
download | hercules-b1f3d6ee46b54e935f6e4bf589c3216830904a3f.tar.gz hercules-b1f3d6ee46b54e935f6e4bf589c3216830904a3f.tar.bz2 hercules-b1f3d6ee46b54e935f6e4bf589c3216830904a3f.tar.xz hercules-b1f3d6ee46b54e935f6e4bf589c3216830904a3f.zip |
Fixed a typo in char_sql/char.c, thanks to Euph.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@7070 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/char_sql/char.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index d406c2522..714770395 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -3,6 +3,8 @@ Date Added AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2006/06/09
+ * Fixed a typo in char_sql/char.c, thanks to Euph [MasterOfMuppets]
2006/06/08
* Modified guild exp to be an unsigned int rather than a signed one.
[Skotlex]
diff --git a/src/char_sql/char.c b/src/char_sql/char.c index 1a0d2de74..5897a88ab 100644 --- a/src/char_sql/char.c +++ b/src/char_sql/char.c @@ -2006,7 +2006,7 @@ int parse_tologin(int fd) { ShowSQL("DB error - %s\n",mysql_error(&mysql_handle));
ShowDebug("at %s:%d - %s\n", __FILE__,__LINE__,tmp_sql);
}
- sprintf(tmp_sql, "UPDATE `%s` SET `class`='%d' , `skill_point`='%d' , `weapon`='0' , `shield='0' , `head_top`='0' , `head_mid`='0' , `head_bottom`='0' WHERE `char_id` = '%d'",char_db, class_, skill_point, char_id);
+ sprintf(tmp_sql, "UPDATE `%s` SET `class`='%d' , `skill_point`='%d' , `weapon`='0' , `shield=`'0' , `head_top`='0' , `head_mid`='0' , `head_bottom`='0' WHERE `char_id` = '%d'",char_db, class_, skill_point, char_id);
if (mysql_query(&mysql_handle, tmp_sql)) {
ShowSQL("DB error - %s\n",mysql_error(&mysql_handle));
ShowDebug("at %s:%d - %s\n", __FILE__,__LINE__,tmp_sql);
|