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

import io.github.moulberry.notenoughupdates.profileviewer.GuiProfileViewer;
import net.minecraft.command.ICommandSender;

public class CataCommand extends ViewProfileCommand {

	public CataCommand() {
		super("cata");
	}

	@Override
	public void processCommand(ICommandSender sender, String[] args) {
		GuiProfileViewer.currentPage = GuiProfileViewer.ProfileViewerPage.DUNGEON;
		super.processCommand(sender, args);
	}
}