11 lines
364 B
Java
11 lines
364 B
Java
package com.hypixel.hytale.builtin.portals.commands;
|
|
|
|
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractCommandCollection;
|
|
|
|
public class FragmentCommands extends AbstractCommandCollection {
|
|
public FragmentCommands() {
|
|
super("fragment", "server.commands.fragment.desc");
|
|
this.addSubCommand(new TimerFragmentCommand());
|
|
}
|
|
}
|