-
-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: remove Velocity's (de-)compression dependency * feat: [wip] implement Fallback for BungeeCord * feat: disable legacy pipelines by default (can be enabled again) * fix(bungee): NPE on handshake * fix: use correct protocol version for channel initialization * feat: implement login packet spam fix * feat(bungee): implement duplicate login/status packet spam fix * feat: implement cleaner FallbackHandlerBoss * fix(bungee): traffic handler not being injected properly * fix(bungee): run verification check after running everything in the event loop * fix(bungee): only throw exceptions for up- and downstream bridge * fix(bungee): total traffic statistic not working * fix(bukkit, bungee): logger wrapper not supporting arguments * fix(bungee): perform the already-online check by the username, not the uuid * style: fix FallbackChannelHandler comments * style: don't annotate FallbackUserWrapper as EqualsAndHashCode * style: fix ToString annotation in EmptyChunkData * feat(fallback): remove 1.19/1.19.1 chat nbt mappings * feat: use expiring cache for joins per second counter * fix(bungee): don't log the join attempt if the login is canceled * fix(all): lockdown mode not being saved correctly * fix(bungee): closeWith method only working during verification * fix(bungee): use Velocity's server write mark * fix(bungee): don't set BB allocator if it's already set
- Loading branch information
1 parent
bf9e77a
commit 8361f19
Showing
30 changed files
with
569 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
sonar-bungee/src/main/java/xyz/jonesdev/sonar/bungee/fallback/ConditionFailedException.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
/* | ||
* Copyright (C) 2023 Sonar Contributors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package xyz.jonesdev.sonar.bungee.fallback; | ||
|
||
import io.netty.handler.codec.DecoderException; | ||
|
||
final class ConditionFailedException extends DecoderException { | ||
public ConditionFailedException(final String message) { | ||
super(message); | ||
} | ||
} |
Oops, something went wrong.