diff --git a/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/api/util/player/PlayerUtils.java b/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/api/util/player/PlayerUtils.java index 0f6423a..c6599bb 100644 --- a/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/api/util/player/PlayerUtils.java +++ b/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/api/util/player/PlayerUtils.java @@ -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); }