🐛 Fix merge issue
This commit is contained in:
parent
c67619e5da
commit
b94075833d
1 changed files with 7 additions and 2 deletions
|
|
@ -408,8 +408,13 @@ public class Command<C> {
|
||||||
@NonNull final Description description) {
|
@NonNull final Description description) {
|
||||||
final Map<CommandArgument<C, ?>, Description> commandArgumentMap = new LinkedHashMap<>(this.commandArguments);
|
final Map<CommandArgument<C, ?>, Description> commandArgumentMap = new LinkedHashMap<>(this.commandArguments);
|
||||||
commandArgumentMap.put(builder.build(), description);
|
commandArgumentMap.put(builder.build(), description);
|
||||||
return new Builder<>(this.commandManager, this.commandMeta, this.senderType, commandArgumentMap,
|
return new Builder<>(this.commandManager,
|
||||||
this.commandExecutionHandler, this.commandPermission);
|
this.commandMeta,
|
||||||
|
this.senderType,
|
||||||
|
commandArgumentMap,
|
||||||
|
this.commandExecutionHandler,
|
||||||
|
this.commandPermission,
|
||||||
|
this.flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue