Compare commits
2 Commits
10194f1757
...
65efaad0f5
Author | SHA1 | Date | |
---|---|---|---|
65efaad0f5 | |||
4d4d95b317 |
Binary file not shown.
@ -6,7 +6,7 @@ message("Using toolchain file ${CMAKE_TOOLCHAIN_FILE}.")
|
|||||||
########################################################################################################################
|
########################################################################################################################
|
||||||
project(
|
project(
|
||||||
ArtifactTracker
|
ArtifactTracker
|
||||||
VERSION 1.0.0
|
VERSION 1.0.1
|
||||||
DESCRIPTION "Artifact Tracker"
|
DESCRIPTION "Artifact Tracker"
|
||||||
LANGUAGES CXX)
|
LANGUAGES CXX)
|
||||||
set(CMAKE_CXX_STANDARD 23)
|
set(CMAKE_CXX_STANDARD 23)
|
||||||
|
@ -269,7 +269,9 @@ namespace ArtifactTracker
|
|||||||
g_bBookShelf = false;
|
g_bBookShelf = false;
|
||||||
std::thread([]() {
|
std::thread([]() {
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(1200));
|
std::this_thread::sleep_for(std::chrono::milliseconds(1200));
|
||||||
|
SKSE::GetTaskInterface()->AddTask([&]() {
|
||||||
ArtifactTracker::SyncCellStorage();
|
ArtifactTracker::SyncCellStorage();
|
||||||
|
});
|
||||||
}).detach();
|
}).detach();
|
||||||
} else {
|
} else {
|
||||||
SyncCellStorage();
|
SyncCellStorage();
|
||||||
@ -757,7 +759,9 @@ namespace ArtifactTracker
|
|||||||
g_iFollowerIndex = iCurrentFollowers;
|
g_iFollowerIndex = iCurrentFollowers;
|
||||||
std::thread([]() {
|
std::thread([]() {
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(3000)); // wait for followers to load into the new cell
|
std::this_thread::sleep_for(std::chrono::milliseconds(3000)); // wait for followers to load into the new cell
|
||||||
|
SKSE::GetTaskInterface()->AddTask([&]() {
|
||||||
RescanFoundArtifacts();
|
RescanFoundArtifacts();
|
||||||
|
});
|
||||||
}).detach();
|
}).detach();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -116,7 +116,9 @@ auto EventListener::ProcessEvent(
|
|||||||
if (ref && ArtifactTracker::IsArtifact(ref->GetBaseObject())) {
|
if (ref && ArtifactTracker::IsArtifact(ref->GetBaseObject())) {
|
||||||
std::thread([]() {
|
std::thread([]() {
|
||||||
std::this_thread::sleep_for(std::chrono::milliseconds(200));
|
std::this_thread::sleep_for(std::chrono::milliseconds(200));
|
||||||
|
SKSE::GetTaskInterface()->AddTask([&]() {
|
||||||
ArtifactTracker::SyncCellStorage();
|
ArtifactTracker::SyncCellStorage();
|
||||||
|
});
|
||||||
}).detach();
|
}).detach();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
|
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg/master/scripts/vcpkg.schema.json",
|
||||||
"name": "artifact-tracker",
|
"name": "artifact-tracker",
|
||||||
"version-string": "1.0.0",
|
"version-string": "1.0.1",
|
||||||
"port-version": 0,
|
"port-version": 0,
|
||||||
"description": "Artifact Tracker",
|
"description": "Artifact Tracker",
|
||||||
"homepage": "https://eddoursul.win/mods/artifact-tracker/",
|
"homepage": "https://eddoursul.win/mods/artifact-tracker/",
|
||||||
|
Loading…
Reference in New Issue
Block a user