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());