summaryrefslogtreecommitdiff
path: root/mm/2s2h/DeveloperTools/WarpPoint.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'mm/2s2h/DeveloperTools/WarpPoint.cpp')
-rw-r--r--mm/2s2h/DeveloperTools/WarpPoint.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/mm/2s2h/DeveloperTools/WarpPoint.cpp b/mm/2s2h/DeveloperTools/WarpPoint.cpp
index 62d1b02eb..6e019cf71 100644
--- a/mm/2s2h/DeveloperTools/WarpPoint.cpp
+++ b/mm/2s2h/DeveloperTools/WarpPoint.cpp
@@ -31,7 +31,7 @@ std::map<std::string, WarpPoint> warpPoints;
#define CVAR_BOOT_TO_FILE_SELECT ((bool)CVarGetInteger(CVAR_BOOT_TO_FILE_SELECT_NAME, 0))
void LoadConfig() {
- auto allConfig = Ship::Context::GetInstance()->GetConfig()->GetNestedJson();
+ auto allConfig = Ship::Context::GetRawInstance()->GetConfig()->GetNestedJson();
if (allConfig.find("WarpPoints") == allConfig.end() || !allConfig["WarpPoints"].is_object()) {
allConfig["WarpPoints"] = nlohmann::json::object();
}
@@ -39,10 +39,10 @@ void LoadConfig() {
}
void SaveConfig() {
- auto allConfig = Ship::Context::GetInstance()->GetConfig()->GetNestedJson();
+ auto allConfig = Ship::Context::GetRawInstance()->GetConfig()->GetNestedJson();
allConfig["WarpPoints"] = warpPoints;
- Ship::Context::GetInstance()->GetConfig()->SetBlock("WarpPoints", warpPoints);
- Ship::Context::GetInstance()->GetConfig()->Save();
+ Ship::Context::GetRawInstance()->GetConfig()->SetBlock("WarpPoints", warpPoints);
+ Ship::Context::GetRawInstance()->GetConfig()->Save();
}
void Warp(WarpPoint& warpPoint) {