mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-21 21:17:25 +00:00
fix compiling
This commit is contained in:
parent
66cf96af1a
commit
f6f3cdc3c0
@ -10,8 +10,6 @@ CDDeletionRestriction CDDeletionRestrictionsTable::Default = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
void CDDeletionRestrictionsTable::LoadValuesFromDatabase() {
|
void CDDeletionRestrictionsTable::LoadValuesFromDatabase() {
|
||||||
|
|
||||||
|
|
||||||
auto& entries = GetEntriesMutable();
|
auto& entries = GetEntriesMutable();
|
||||||
|
|
||||||
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM DeletionRestrictions");
|
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM DeletionRestrictions");
|
||||||
@ -25,7 +23,7 @@ void CDDeletionRestrictionsTable::LoadValuesFromDatabase() {
|
|||||||
for (const auto& idstr : GeneralUtils::SplitString(raw_ids, ',')) {
|
for (const auto& idstr : GeneralUtils::SplitString(raw_ids, ',')) {
|
||||||
if (!idstr.empty()) {
|
if (!idstr.empty()) {
|
||||||
const auto id = GeneralUtils::TryParse<int32_t>(idstr);
|
const auto id = GeneralUtils::TryParse<int32_t>(idstr);
|
||||||
if (id) entry.ids.push_back(id);
|
if (id) entry.ids.push_back(id.value());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user