From 7faf4cf81a5ca468461a59bb80cbec4ac0909d7c Mon Sep 17 00:00:00 2001 From: Jo0001 Date: Mon, 1 Feb 2021 14:51:03 +0100 Subject: [PATCH] Change error message (#2286) --- .../us/myles/ViaVersion/exception/InformativeException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/us/myles/ViaVersion/exception/InformativeException.java b/common/src/main/java/us/myles/ViaVersion/exception/InformativeException.java index 86afaf8ff..95eefd60a 100644 --- a/common/src/main/java/us/myles/ViaVersion/exception/InformativeException.java +++ b/common/src/main/java/us/myles/ViaVersion/exception/InformativeException.java @@ -31,7 +31,7 @@ public class InformativeException extends Exception { @Override public String getMessage() { StringBuilder builder = new StringBuilder(); - builder.append("Please post this error to https://github.com/ViaVersion/ViaVersion/issues\n{"); + builder.append("Please post this error to https://github.com/ViaVersion/ViaVersion/issues and follow the issue template\n{"); int i = 0; for (Map.Entry entry : info.entrySet()) { builder.append(i == 0 ? "" : ", ").append(entry.getKey()).append(": ").append(entry.getValue().toString());