2
0
mirror of https://github.com/proxiodev/RedisBungee.git synced 2024-11-22 20:28:00 +00:00

change one of the comments in PlayerUtils

This commit is contained in:
mohammed jasem alaajel 2022-11-14 08:42:54 +04:00
parent c69b1e214e
commit a526298d1c
No known key found for this signature in database

View File

@ -27,7 +27,7 @@ public class PlayerUtils {
}
public static void setKickedOtherLocation(String uuid, UnifiedJedis unifiedJedis) {
// set anything for sake of exists check. then expire it after 2 seconds in case proxy fails to unset it.
// set anything for sake of exists check. then expire it after 2 seconds. should be great?
unifiedJedis.set("kicked-other-location::" + uuid, "0");
unifiedJedis.expire("kicked-other-location::" + uuid, 2);
}