Fix Tic Tac Toe not appearing in the Power Play section

This commit is contained in:
Sam 2017-11-02 16:25:56 +00:00 committed by Alexander Meech
parent 44a1aad68b
commit fddfcda105
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
package mineplex.core.gadget.gadgets.item;
import java.time.Month;
import java.time.YearMonth;
import java.util.Arrays;
import java.util.HashMap;
import java.util.HashSet;
@ -97,12 +99,13 @@ public class ItemOAndX extends ItemGadget
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.POWERPLAY_BONUS, Material.CARPET, (byte) 14, COOLDOWN_INVITE, null);
_invites = new HashMap<>(3);
_gameBoards = new HashSet<>(3);
Free = false;
setPPCYearMonth(YearMonth.of(2017, Month.NOVEMBER));
}
@Override