fix: fix order

This commit is contained in:
Caixukun1919810
2024-05-20 19:58:27 +08:00
committed by GitHub
Unverified
+2 -2
View File
@@ -60,7 +60,7 @@ void Export_Legacy_GMLib_ServerAPI() {
RemoteCall::exportAs(
"GMLib_ServerAPI",
"addFakeList",
[](const std::string& xuid, const std::string& name) -> bool {
[](const std::string& name, const std::string& xuid) -> bool {
return GMLIB::Server::FakeList::addFakeList(name, xuid, ActorUniqueID(-1));
}
);
@@ -70,4 +70,4 @@ void Export_Legacy_GMLib_ServerAPI() {
RemoteCall::exportAs("GMLib_ServerAPI", "removeAllFakeList", []() -> void {
return GMLIB::Server::FakeList::removeAllFakeLists();
});
}
}