From 7029552c023af0df5ef8efe6c02aeb509db35887 Mon Sep 17 00:00:00 2001 From: mohammed jasem alaajel Date: Mon, 6 May 2024 15:24:10 +0400 Subject: [PATCH] clarify compatibility mode error --- .../minecraft/redisbungee/AbstractRedisBungeeAPI.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/AbstractRedisBungeeAPI.java b/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/AbstractRedisBungeeAPI.java index 690fe5b..e568d5b 100644 --- a/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/AbstractRedisBungeeAPI.java +++ b/RedisBungee-API/src/main/java/com/imaginarycode/minecraft/redisbungee/AbstractRedisBungeeAPI.java @@ -423,7 +423,7 @@ public abstract class AbstractRedisBungeeAPI { if (getMode() == RedisBungeeMode.SINGLE) { JedisPool jedisPool = ((JedisPooledSummoner) this.plugin.getSummoner()).getCompatibilityJedisPool(); if (jedisPool == null) { - throw new IllegalStateException("JedisPool compatibility mode is disabled"); + throw new IllegalStateException("JedisPool compatibility mode is disabled, Please enable it in the RedisBungee config.yml"); } return jedisPool; } else {