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
1 changed files with 1 additions and 1 deletions

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);
}