diff --git a/Release/Plugins/RenX.Core.lib b/Release/Plugins/RenX.Core.lib index f95fc83..f7480df 100644 Binary files a/Release/Plugins/RenX.Core.lib and b/Release/Plugins/RenX.Core.lib differ diff --git a/RenX.Core/RenX_Server.cpp b/RenX.Core/RenX_Server.cpp index b5c9d18..efc2e85 100644 --- a/RenX.Core/RenX_Server.cpp +++ b/RenX.Core/RenX_Server.cpp @@ -1051,7 +1051,12 @@ void RenX::Server::processLine(const Jupiter::ReadableString &line) pair = table.getPair(STRING_LITERAL_AS_REFERENCE("Admin")); if (pair != nullptr) - player->adminType = pair->getValue(); + { + if (pair->getValue().equals("None")) + player->adminType = ""; + else + player->adminType = pair->getValue(); + } }; Jupiter::INIFile::Section::KeyValuePair *pair = table.getPair(STRING_LITERAL_AS_REFERENCE("PlayerLog")); if (pair != nullptr)