diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-01 07:05:16 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-01 07:05:16 +0000 |
commit | a50c6281bbad73cd4155cbf55af4c899c9e2d1ea (patch) | |
tree | 8161ab2ccedc1fcbdac2f719c3f530bf73b9ed1d /src/char_sql | |
parent | 21dbc498aa93746cc8aaf38b7362a58c71addb84 (diff) | |
download | hercules-a50c6281bbad73cd4155cbf55af4c899c9e2d1ea.tar.gz hercules-a50c6281bbad73cd4155cbf55af4c899c9e2d1ea.tar.bz2 hercules-a50c6281bbad73cd4155cbf55af4c899c9e2d1ea.tar.xz hercules-a50c6281bbad73cd4155cbf55af4c899c9e2d1ea.zip |
Removed unused guardian hp columns from the guild castles table in main.sql (should have been done in r11915).
Corrected incorrect use of the datetime column in the `login` table (bugreport:1962). Refreshed txt account savefile.
Cleaned up some random minor source code glitches.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13030 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/char_sql')
-rw-r--r-- | src/char_sql/int_quest.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/char_sql/int_quest.c b/src/char_sql/int_quest.c index e198754f6..53c2d3cda 100644 --- a/src/char_sql/int_quest.c +++ b/src/char_sql/int_quest.c @@ -41,7 +41,6 @@ int mapif_quests_fromsql(int char_id, struct quest questlog[]) || SQL_ERROR == SqlStmt_Execute(stmt) || SQL_ERROR == SqlStmt_BindColumn(stmt, 0, SQLDT_INT, &tmp_quest.quest_id, 0, NULL, NULL) || SQL_ERROR == SqlStmt_BindColumn(stmt, 1, SQLDT_INT, &tmp_quest.state, 0, NULL, NULL) ) - //|| SQL_ERROR == SqlStmt_BindColumn(stmt, 2, SQLDT_INT, &tmp_quest.time, 0, NULL, NULL) SqlStmt_ShowDebug(stmt); for( i = 0; i < MAX_QUEST && SQL_SUCCESS == SqlStmt_NextRow(stmt); ++i ) |