blob: 1bde763139d04c4f8bb7dac93951235cceb6e99e (
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");
}
}
|