We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d778bc7 commit 4967aaaCopy full SHA for 4967aaa
litecommands-core/src/dev/rollczi/litecommands/command/builder/CommandBuilderRootImpl.java
@@ -157,6 +157,7 @@ public boolean isRoot() {
157
public Collection<CommandRoute<SENDER>> build(CommandRoute<SENDER> parent) {
158
return this.children.values().stream()
159
.flatMap(builder -> builder.build(parent).stream())
160
+ .peek(route -> route.meta().putAll(this.meta))
161
.collect(Collectors.toList());
162
}
163
0 commit comments