Add a description oto Tic Tac Toe

This commit is contained in:
Sam 2017-10-30 11:09:54 +00:00 committed by Alexander Meech
parent 41a649456a
commit 7d8bcdf944

View File

@ -83,7 +83,7 @@ public class ItemOAndX extends ItemGadget
}; };
private static final ItemStack FLOOR = new ItemStack(Material.WOOL); private static final ItemStack FLOOR = new ItemStack(Material.WOOL);
private static final ItemStack DEFAULT_TILE = new ItemStack(Material.WOOL, 1, (short) 0, (byte) 15); private static final ItemStack DEFAULT_TILE = new ItemStack(Material.WOOL, 1, (short) 0, (byte) 15);
private static final long TIMEOUT = TimeUnit.MINUTES.toMillis(3); private static final long TIMEOUT = TimeUnit.MINUTES.toMillis(2);
private final Map<String, Pair<String, Long>> _invites; private final Map<String, Pair<String, Long>> _invites;
private final Set<GameBoard> _gameBoards; private final Set<GameBoard> _gameBoards;
@ -94,6 +94,11 @@ public class ItemOAndX extends ItemGadget
{ {
C.cWhite + "Play Tic Tac Toe", C.cWhite + "Play Tic Tac Toe",
C.cWhite + "with other players!", C.cWhite + "with other players!",
C.blankLine,
C.cWhite + "Left click the block",
C.cWhite + "to claim it.",
C.cWhite + "First person to get 3",
C.cWhite + "in a row"
}, CostConstants.NO_LORE, Material.CARPET, (byte) 14, COOLDOWN_INVITE, null); }, CostConstants.NO_LORE, Material.CARPET, (byte) 14, COOLDOWN_INVITE, null);
_invites = new HashMap<>(3); _invites = new HashMap<>(3);