mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2024-11-09 01:38:20 +00:00
fix compiling
This commit is contained in:
parent
66cf96af1a
commit
f6f3cdc3c0
@ -10,8 +10,6 @@ CDDeletionRestriction CDDeletionRestrictionsTable::Default = {
|
||||
};
|
||||
|
||||
void CDDeletionRestrictionsTable::LoadValuesFromDatabase() {
|
||||
|
||||
|
||||
auto& entries = GetEntriesMutable();
|
||||
|
||||
auto tableData = CDClientDatabase::ExecuteQuery("SELECT * FROM DeletionRestrictions");
|
||||
@ -25,7 +23,7 @@ void CDDeletionRestrictionsTable::LoadValuesFromDatabase() {
|
||||
for (const auto& idstr : GeneralUtils::SplitString(raw_ids, ',')) {
|
||||
if (!idstr.empty()) {
|
||||
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