9
0
mirror of https://github.com/WiIIiam278/HuskSync.git synced 2025-12-19 14:59:21 +00:00

fix: uncomment petitionServerCheckin method call

This commit is contained in:
William278
2025-03-23 16:18:27 +00:00
parent 937ea9bc8e
commit bf8474e02d

View File

@@ -54,7 +54,7 @@ public class LockstepDataSyncer extends DataSyncer {
// If they are checked out, ask the server to check them back in and return false
final Optional<String> server = getRedis().getUserCheckedOut(user);
if (server.isPresent() && !server.get().equals(plugin.getServerName())) {
// getRedis().petitionServerCheckin(server.get(), user);
getRedis().petitionServerCheckin(server.get(), user);
return false;
}