Fixed emerald set order

This commit is contained in:
xGamingDudex 2016-05-15 23:30:17 +02:00
parent ca556f7846
commit fdf167953f
1 changed files with 2 additions and 2 deletions

View File

@ -13,10 +13,10 @@ public class SetEmerald extends GadgetSet
public SetEmerald(GadgetManager manager)
{
super(manager, "Emerald", /*"Press Shift to summon a Gem Party Bomb. 24 hour cooldown."*/ "Coming soon...",
manager.getGadget(ParticleEmerald.class),
manager.getGadget(ArrowTrailEmerald.class),
manager.getGadget(DeathEmerald.class),
manager.getGadget(DoubleJumpEmerald.class));
manager.getGadget(DoubleJumpEmerald.class),
manager.getGadget(ParticleEmerald.class));
}
}