CommandConstants.java 595 B

123456789101112
  1. package com.gmail.nossr50.commands;
  2. import com.google.common.collect.ImmutableList;
  3. import java.util.List;
  4. public class CommandConstants {
  5. public static final List<String> TELEPORT_SUBCOMMANDS = ImmutableList.of("toggle", "accept", "acceptany", "acceptall");
  6. public static final List<String> ALLIANCE_SUBCOMMANDS = ImmutableList.of("invite", "accept", "disband");
  7. public static final List<String> TRUE_FALSE_OPTIONS = ImmutableList.of("on", "off", "true", "false", "enabled", "disabled");
  8. public static final List<String> RESET_OPTIONS = ImmutableList.of("clear", "reset");
  9. }