Mirror von
https://github.com/GeyserMC/Geyser.git
synchronisiert 2024-12-25 07:40:10 +01:00
Fix rare StackOverflowError in DeclareCommands
This behavior is exhibited with the NanoLimbo software version 1.2.2.
Dieser Commit ist enthalten in:
Ursprung
1afa22d5cf
Commit
9f4c2ce5fc
@ -295,6 +295,11 @@ public class JavaDeclareCommandsTranslator extends PacketTranslator<ServerDeclar
|
||||
for (int paramID : paramNode.getChildIndices()) {
|
||||
CommandNode paramNode = allNodes[paramID];
|
||||
|
||||
if (paramNode == this.paramNode) {
|
||||
// Fixes a StackOverflowError when an argument has itself as a child
|
||||
continue;
|
||||
}
|
||||
|
||||
if (paramNode.getParser() == null) {
|
||||
boolean foundCompatible = false;
|
||||
for (int i = 0; i < children.size(); i++) {
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren