From fcee6505a8a960629bde350d4869989bffb4f70b Mon Sep 17 00:00:00 2001 From: James Seibel <85203568+jeseibel@users.noreply.github.com> Date: Sat, 4 May 2024 09:07:55 -0500 Subject: [PATCH] Improve DH API missing error message --- src/main/java/net/irisshaders/iris/compat/dh/DHCompat.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/net/irisshaders/iris/compat/dh/DHCompat.java b/src/main/java/net/irisshaders/iris/compat/dh/DHCompat.java index 042a2e3d63..3991078c8b 100644 --- a/src/main/java/net/irisshaders/iris/compat/dh/DHCompat.java +++ b/src/main/java/net/irisshaders/iris/compat/dh/DHCompat.java @@ -79,7 +79,7 @@ public static void run() { if (e instanceof ExceptionInInitializerError eiie) { throw new RuntimeException("Failure loading DH compat.", eiie.getCause()); } else { - throw new RuntimeException("DH 2.0 not found, yet Fabric claims it's there. Curious.", e); + throw new RuntimeException("DH found, but one or more API methods are missing. Iris requires DH [2.0.4] or DH API version [1.1.0] or newer. Please make sure you are on the latest version of DH and Iris.", e); } } else { Iris.logger.info("DH not found, and classes not found.");