Fixes for the 1 Shard thing (Next time, for testing, use /unlockCosmetics)

This commit is contained in:
LCastr0 2016-05-20 05:11:59 -03:00
parent 11db05b6bf
commit c58e0f3e30
4 changed files with 4 additions and 6 deletions

View File

@ -20,7 +20,7 @@ public class DeathCupidsBrokenHeart extends DeathEffectGadget
{
super(manager, "Cupid's Broken Heart",
UtilText.splitLineToArray("Cue the weeping violins...", LineFormat.LORE),
1, Material.APPLE, (byte) 0);
-2, Material.APPLE, (byte) 0);
}
@Override

View File

@ -31,7 +31,7 @@ public class DoubleJumpCupidsWings extends DoubleJumpEffectGadget
{
super(manager, "Cupid's Wings",
UtilText.splitLineToArray("Take flight on the wings of love!", LineFormat.LORE),
1, Material.APPLE, (byte)0);
-2, Material.APPLE, (byte)0);
}
@Override

View File

@ -14,8 +14,7 @@ public class HatCompanionBlock extends HatGadget
{
super(manager, "Companion Block",
UtilText.splitLineToArray(C.cGray + "The Enrichment Center is required to remind you that the Weighted Companion cube cannot talk. In the event that it does talk The Enrichment Center asks you to ignore its advice.", LineFormat.LORE),
1,
SkinData.COMPANION_CUBE.getSkull(), "Companion Block");
-2, SkinData.COMPANION_CUBE.getSkull(), "Companion Block");
}
}

View File

@ -14,8 +14,7 @@ public class HatSnowman extends HatGadget
{
super(manager, "Snowman Head",
UtilText.splitLineToArray(C.cGray + "Do you want to be a snowman?", LineFormat.LORE),
1,
SkinData.SNOWMAN.getSkull());
-2, SkinData.SNOWMAN.getSkull());
}
}