Missed two of the cosmetics

This commit is contained in:
Sam 2017-11-29 15:54:00 +00:00 committed by Alexander Meech
parent f629cce155
commit be8e8d4783
2 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,7 @@
package mineplex.core.gadget.gadgets.mount.types;
import java.time.Month;
import java.time.YearMonth;
import java.util.Arrays;
import java.util.HashSet;
import java.util.List;
@ -39,8 +41,10 @@ public class MountSledge extends Mount<MountSledgeData>
public MountSledge(GadgetManager manager)
{
super(manager, "Sledge Mount",
UtilText.splitLineToArray(C.cGray + "TODO", LineFormat.LORE),
UtilText.splitLineToArray(C.cGray + "A classic snow sledge crafted from the finest trees.", LineFormat.LORE),
CostConstants.POWERPLAY_BONUS, Material.SPRUCE_WOOD_STAIRS, (byte) 0);
setPPCYearMonth(YearMonth.of(2017, Month.DECEMBER));
}
@Override

View File

@ -32,7 +32,7 @@ public class ParticleWingsChristmas extends ParticleGadget
public ParticleWingsChristmas(GadgetManager manager)
{
super(manager, "Christmas Wings",
UtilText.splitLineToArray(C.cGray + "TODO", LineFormat.LORE),
UtilText.splitLineToArray(C.cGray + "The wings that keep on giving.", LineFormat.LORE),
CostConstants.FOUND_IN_GINGERBREAD_CHESTS, Material.GLASS, (byte) 0);
setDisplayItem(SkinData.PRESENT.getSkull());