Waterfall/Waterfall-Proxy-Patches/0017-Change-IllegalStateException-to-QuietException-and-e.patch

25 lines
1.1 KiB
Diff
Raw Normal View History

2021-12-30 03:02:28 +01:00
From 9fd7c7d549ca2bffbf5121a98dbc425c197995e3 Mon Sep 17 00:00:00 2001
2020-12-16 11:44:19 +01:00
From: foss-mc <69294560+foss-mc@users.noreply.github.com>
Date: Wed, 16 Dec 2020 18:40:55 +0800
Subject: [PATCH] Change IllegalStateException to QuietException and explain
that is a plugin
diff --git a/proxy/src/main/java/net/md_5/bungee/UserConnection.java b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
2021-11-30 15:50:10 +01:00
index 43042c6a..9b04f7ca 100644
2020-12-16 11:44:19 +01:00
--- a/proxy/src/main/java/net/md_5/bungee/UserConnection.java
+++ b/proxy/src/main/java/net/md_5/bungee/UserConnection.java
2021-11-30 15:50:10 +01:00
@@ -308,7 +308,8 @@ public final class UserConnection implements ProxiedPlayer
2020-12-16 11:44:19 +01:00
if ( getServer() == null && !ch.isClosing() )
{
- throw new IllegalStateException( "Cancelled ServerConnectEvent with no server or disconnect." );
+ // FlameCord - Change IllegalStateException to QuietException and explain that is a plugin
+ throw new QuietException("A plugin cancelled ServerConnectEvent with no server or disconnect.");
}
return;
}
--
2021-12-30 03:02:28 +01:00
2.32.0
2020-12-16 11:44:19 +01:00