mirror of
https://github.com/GeyserMC/Geyser.git
synced 2025-12-27 10:49:10 +00:00
Fix rare StackOverflowError in DeclareCommands
This behavior is exhibited with the NanoLimbo software version 1.2.2.
This commit is contained in:
@@ -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++) {
|
||||
|
||||
Reference in New Issue
Block a user