Commit 31456bd5 authored by Ash's avatar Ash
Browse files

Made some improvements to permission formatting

`+` Added config options to use `stickers` as `emojis` and `sprays`

`+` A bunch of refactoring

`+` Added the color picker for colorable cosmetics

`+` Fixed a bunch of cosmetics bugs

`+` Added `Effects` cosmetic type, that can run Mythic skills to create particle effects and such
parent 99f1e6e0
......@@ -9,7 +9,6 @@ import io.lumine.cosmetics.types.gestures.Gesture;
import io.lumine.cosmetics.types.equipment.hats.Hat;
import io.lumine.cosmetics.types.modelengine.MEGAccessory;
import io.lumine.cosmetics.types.equipment.offhand.Offhand;
import io.lumine.cosmetics.types.particle.ParticleAccessory;
import io.lumine.cosmetics.types.pets.Pet;
import io.lumine.cosmetics.types.sprays.Spray;
......@@ -25,7 +24,6 @@ public class CosmeticType {
register(BackAccessory.class, new CosmeticConstant("BACK", "backs"));
register(Hat.class, new CosmeticConstant("HAT", "hats"));
register(MEGAccessory.class, new CosmeticConstant("ACCESSORY", "accessories"));
register(ParticleAccessory.class, new CosmeticConstant("PARTICLE", "particles"));
register(Pet.class, new CosmeticConstant("PET", "pets"));
register(Spray.class, new CosmeticConstant("SPRAY", "sprays"));
register(Offhand.class, new CosmeticConstant("OFFHAND", "offhands"));
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment