aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/io/github/moulberry/notenoughupdates/commands/misc/CollectionLogCommand.java
blob: 1d6f9a12b3269a214d27a07e8c2ffe0fb2cdeb6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package io.github.moulberry.notenoughupdates.commands.misc;

import io.github.moulberry.notenoughupdates.collectionlog.GuiCollectionLog;
import io.github.moulberry.notenoughupdates.commands.ScreenCommand;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

public class CollectionLogCommand extends ScreenCommand {

    public CollectionLogCommand() {
        super("neucl", GuiCollectionLog::new);
    }

    @Override
    public List<String> getCommandAliases() {
        return Collections.singletonList("collectionlog");
    }
}