From 0ea1aaaea7c3e998c246122cac579ad11cba3148 Mon Sep 17 00:00:00 2001 From: JustinAJ Date: Thu, 6 Nov 2014 14:24:15 -0500 Subject: [PATCH] RenX_ModSystemPlugin::set() now calls sync(). --- RenX.ModSystem/RenX_ModSystem.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RenX.ModSystem/RenX_ModSystem.cpp b/RenX.ModSystem/RenX_ModSystem.cpp index 7716c11..732f1cc 100644 --- a/RenX.ModSystem/RenX_ModSystem.cpp +++ b/RenX.ModSystem/RenX_ModSystem.cpp @@ -225,6 +225,7 @@ bool RenX_ModSystemPlugin::set(RenX::PlayerInfo *player, RenX_ModSystemPlugin::M RenX_ModSystemPlugin::modsFile.set(player->uuid, STRING_LITERAL_AS_REFERENCE("SteamID"), Jupiter::StringS::Format("%llu", player->steamid)); RenX_ModSystemPlugin::modsFile.set(player->uuid, STRING_LITERAL_AS_REFERENCE("LastIP"), player->ip); RenX_ModSystemPlugin::modsFile.set(player->uuid, STRING_LITERAL_AS_REFERENCE("Name"), player->name); + RenX_ModSystemPlugin::modsFile.sync(); return r; }