mirror of
https://github.com/OpenFusionProject/OpenFusion.git
synced 2024-11-22 13:30:06 +00:00
Fix iterators and query typo
This commit is contained in:
parent
0e016646ef
commit
c709d458f4
@ -933,6 +933,7 @@ void Database::getPlayer(Player* plr, int id) {
|
|||||||
plr->RemainingNPCCount[i][0] = sqlite3_column_int(stmt, 1);
|
plr->RemainingNPCCount[i][0] = sqlite3_column_int(stmt, 1);
|
||||||
plr->RemainingNPCCount[i][1] = sqlite3_column_int(stmt, 2);
|
plr->RemainingNPCCount[i][1] = sqlite3_column_int(stmt, 2);
|
||||||
plr->RemainingNPCCount[i][2] = sqlite3_column_int(stmt, 3);
|
plr->RemainingNPCCount[i][2] = sqlite3_column_int(stmt, 3);
|
||||||
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// get buddies
|
// get buddies
|
||||||
@ -951,6 +952,7 @@ void Database::getPlayer(Player* plr, int id) {
|
|||||||
int PlayerBId = sqlite3_column_int(stmt, 1);
|
int PlayerBId = sqlite3_column_int(stmt, 1);
|
||||||
|
|
||||||
plr->buddyIDs[i] = id == PlayerAId ? PlayerBId : PlayerAId;
|
plr->buddyIDs[i] = id == PlayerAId ? PlayerBId : PlayerAId;
|
||||||
|
i++;
|
||||||
}
|
}
|
||||||
|
|
||||||
sqlite3_finalize(stmt);
|
sqlite3_finalize(stmt);
|
||||||
@ -1244,7 +1246,7 @@ void Database::addBuddyship(int playerA, int playerB) {
|
|||||||
|
|
||||||
const char* sql = R"(
|
const char* sql = R"(
|
||||||
INSERT INTO "Buddyships"
|
INSERT INTO "Buddyships"
|
||||||
("PlayerAId", "PlayerBId", Status")
|
("PlayerAId", "PlayerBId", "Status")
|
||||||
VALUES (?, ?, ?);
|
VALUES (?, ?, ?);
|
||||||
)";
|
)";
|
||||||
sqlite3_stmt* stmt;
|
sqlite3_stmt* stmt;
|
||||||
@ -1542,7 +1544,7 @@ void Database::sendEmail(EmailData* data, std::vector<sItemBase> attachments) {
|
|||||||
const char* sql = R"(
|
const char* sql = R"(
|
||||||
INSERT INTO "EmailData"
|
INSERT INTO "EmailData"
|
||||||
("PlayerId", "MsgIndex", "ReadFlag", "ItemFlag", "SenderId", "SenderFirstName", "SenderLastName",
|
("PlayerId", "MsgIndex", "ReadFlag", "ItemFlag", "SenderId", "SenderFirstName", "SenderLastName",
|
||||||
"SubjectLine", "MsgBody", "Taros", "SendTime", "DeleteTime"
|
"SubjectLine", "MsgBody", "Taros", "SendTime", "DeleteTime")
|
||||||
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);
|
VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?);
|
||||||
)";
|
)";
|
||||||
sqlite3_stmt* stmt;
|
sqlite3_stmt* stmt;
|
||||||
|
Loading…
Reference in New Issue
Block a user