From 11e867730c0061608696771e7496c524abe89d27 Mon Sep 17 00:00:00 2001 From: mohammed jasem alaajel Date: Sat, 23 Jul 2022 10:31:12 +0400 Subject: [PATCH] this has to be false, if absent --- .../minecraft/redisbungee/RedisBungeeVelocityPlugin.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeVelocityPlugin.java b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeVelocityPlugin.java index 08617f6..921b8fd 100644 --- a/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeVelocityPlugin.java +++ b/RedisBungee-Velocity/src/main/java/com/imaginarycode/minecraft/redisbungee/RedisBungeeVelocityPlugin.java @@ -693,7 +693,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin { if (playerProxied == null) continue; // We'll deal with it later. - VelocityPlayerUtils.createPlayer(playerProxied, pipeline, true); + VelocityPlayerUtils.createPlayer(playerProxied, pipeline, false); } pipeline.sync(); @@ -754,7 +754,7 @@ public class RedisBungeeVelocityPlugin implements RedisBungeePlugin { if (playerProxied == null) continue; // We'll deal with it later. - VelocityPlayerUtils.createPlayer(playerProxied, jedisCluster, true); + VelocityPlayerUtils.createPlayer(playerProxied, jedisCluster, false); } } catch (Throwable e) { getLogger().error("Unable to fix up stored player data", e);