Use an immutable view in GeyserDefineCommandsEvent

Methods to properly register/unregister commands are provided in the command manager
This commit is contained in:
RednedEpic 2022-07-02 12:30:23 -05:00
parent 36c49a7256
commit b5eb27693f
2 changed files with 2 additions and 3 deletions

View file

@ -36,8 +36,7 @@ import java.util.Map;
* Called when commands are defined within Geyser.
*
* @param commandManager the command manager
* @param commands a mutable list of the currently
* registered default commands
* @param commands an immutable view of the default commands
*/
public record GeyserDefineCommandsEvent(@NonNull CommandManager commandManager, @NonNull Map<String, Command> commands) implements Event {
}