Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.13 - The Technical and Aquatic Update #1704

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
23 changes: 2 additions & 21 deletions build.gradle
Expand Up @@ -110,47 +110,28 @@ sortClassFields {
add 'main', 'org.spongepowered.api.data.type.ArmorTypes'
add 'main', 'org.spongepowered.api.data.type.Arts'
add 'main', 'org.spongepowered.api.data.type.BannerPatternShapes'
add 'main', 'org.spongepowered.api.data.type.BigMushroomTypes'
add 'main', 'org.spongepowered.api.data.type.BodyParts'
add 'main', 'org.spongepowered.api.data.type.BrickTypes'
add 'main', 'org.spongepowered.api.data.type.Careers'
add 'main', 'org.spongepowered.api.data.type.CoalTypes'
add 'main', 'org.spongepowered.api.data.type.ChestAttachmentTypes'
add 'main', 'org.spongepowered.api.data.type.ComparatorTypes'
add 'main', 'org.spongepowered.api.data.type.CookedFishes'
add 'main', 'org.spongepowered.api.data.type.DirtTypes'
add 'main', 'org.spongepowered.api.data.type.DisguisedBlockTypes'
add 'main', 'org.spongepowered.api.data.type.DoublePlantTypes'
add 'main', 'org.spongepowered.api.data.type.DyeColors'
add 'main', 'org.spongepowered.api.data.type.Fishes'
add 'main', 'org.spongepowered.api.data.type.GoldenApples'
add 'main', 'org.spongepowered.api.data.type.Hinges'
add 'main', 'org.spongepowered.api.data.type.HorseColors'
add 'main', 'org.spongepowered.api.data.type.HorseStyles'
add 'main', 'org.spongepowered.api.data.type.InstrumentTypes'
add 'main', 'org.spongepowered.api.data.type.LogAxes'
add 'main', 'org.spongepowered.api.data.type.NotePitches'
add 'main', 'org.spongepowered.api.data.type.OcelotTypes'
add 'main', 'org.spongepowered.api.data.type.ParrotVariants'
add 'main', 'org.spongepowered.api.data.type.PickupRules'
add 'main', 'org.spongepowered.api.data.type.PistonTypes'
add 'main', 'org.spongepowered.api.data.type.PlantTypes'
add 'main', 'org.spongepowered.api.data.type.PortionTypes'
add 'main', 'org.spongepowered.api.data.type.PrismarineTypes'
add 'main', 'org.spongepowered.api.data.type.Professions'
add 'main', 'org.spongepowered.api.data.type.QuartzTypes'
add 'main', 'org.spongepowered.api.data.type.RabbitTypes'
add 'main', 'org.spongepowered.api.data.type.RailDirections'
add 'main', 'org.spongepowered.api.data.type.SandstoneTypes'
add 'main', 'org.spongepowered.api.data.type.SandTypes'
add 'main', 'org.spongepowered.api.data.type.ShrubTypes'
add 'main', 'org.spongepowered.api.data.type.SkinParts'
add 'main', 'org.spongepowered.api.data.type.SkullTypes'
add 'main', 'org.spongepowered.api.data.type.SlabTypes'
add 'main', 'org.spongepowered.api.data.type.SlabPortions'
add 'main', 'org.spongepowered.api.data.type.StairShapes'
add 'main', 'org.spongepowered.api.data.type.StoneTypes'
add 'main', 'org.spongepowered.api.data.type.ToolTypes'
add 'main', 'org.spongepowered.api.data.type.TreeTypes'
add 'main', 'org.spongepowered.api.data.type.WallTypes'
add 'main', 'org.spongepowered.api.data.type.WireAttachmentTypes'
add 'main', 'org.spongepowered.api.block.BlockTypes'
add 'main', 'org.spongepowered.api.block.tileentity.TileEntityTypes'
Expand Down
50 changes: 4 additions & 46 deletions src/main/java/org/spongepowered/api/CatalogTypes.java
Expand Up @@ -40,7 +40,7 @@
import org.spongepowered.api.effect.potion.PotionEffectType;
import org.spongepowered.api.effect.sound.SoundCategory;
import org.spongepowered.api.effect.sound.SoundType;
import org.spongepowered.api.effect.sound.record.RecordType;
import org.spongepowered.api.effect.sound.music.MusicDisc;
import org.spongepowered.api.entity.EntityType;
import org.spongepowered.api.entity.ai.GoalType;
import org.spongepowered.api.entity.ai.task.AITaskType;
Expand Down Expand Up @@ -128,8 +128,6 @@ public final class CatalogTypes {

public static final Class<BanType> BAN_TYPE = BanType.class;

public static final Class<BigMushroomType> BIG_MUSHROOM_TYPE = BigMushroomType.class;

public static final Class<BiomeTreeType> BIOME_TREE_TYPE = BiomeTreeType.class;

public static final Class<BiomeType> BIOME_TYPE = BiomeType.class;
Expand All @@ -146,22 +144,16 @@ public final class CatalogTypes {

public static final Class<BossBarOverlay> BOSS_BAR_OVERLAY = BossBarOverlay.class;

public static final Class<BrickType> BRICK_TYPE = BrickType.class;

public static final Class<Career> CAREER = Career.class;

public static final Class<ChatType> CHAT_TYPE = ChatType.class;

public static final Class<ChatVisibility> CHAT_VISIBILITY = ChatVisibility.class;

public static final Class<CoalType> COAL_TYPE = CoalType.class;

public static final Class<CollisionRule> COLLISION_RULE = CollisionRule.class;

public static final Class<ComparatorType> COMPARISON_TYPE = ComparatorType.class;

public static final Class<CookedFish> COOKED_FISH = CookedFish.class;

public static final Class<CraftingRecipe> CRAFTING_RECIPES = CraftingRecipe.class;

public static final Class<Criterion> CRITERION = Criterion.class;
Expand All @@ -180,16 +172,10 @@ public final class CatalogTypes {

public static final Class<DimensionType> DIMENSION_TYPE = DimensionType.class;

public static final Class<DirtType> DIRT_TYPE = DirtType.class;

public static final Class<DisguisedBlockType> DISGUISED_BLOCK_TYPE = DisguisedBlockType.class;

public static final Class<DismountType> DISMOUNT_TYPE = DismountType.class;

public static final Class<DisplaySlot> DISPLAY_SLOT = DisplaySlot.class;

public static final Class<DoublePlantType> DOUBLE_PLANT_TYPE = DoublePlantType.class;

public static final Class<DyeColor> DYE_COLOR = DyeColor.class;

public static final Class<EnchantmentType> ENCHANTMENT_TYPE = EnchantmentType.class;
Expand All @@ -204,8 +190,6 @@ public final class CatalogTypes {

public static final Class<FireworkShape> FIREWORK_SHAPE = FireworkShape.class;

public static final Class<Fish> FISH = Fish.class;

public static final Class<FluidType> FLUID_TYPE = FluidType.class;

public static final Class<GameMode> GAME_MODE = GameMode.class;
Expand All @@ -214,8 +198,6 @@ public final class CatalogTypes {

public static final Class<GoalType> GOAL_TYPE = GoalType.class;

public static final Class<GoldenApple> GOLDEN_APPLE = GoldenApple.class;

public static final Class<HandPreference> HAND_PREFERENCE = HandPreference.class;

public static final Class<HandType> HAND_TYPE = HandType.class;
Expand All @@ -242,8 +224,6 @@ public final class CatalogTypes {

public static final Class<LlamaVariant> LLAMA_VARIANT = LlamaVariant.class;

public static final Class<LogAxis> LOG_AXIS = LogAxis.class;

public static final Class<MushroomType> MUSHROOM_TYPE = MushroomType.class;

public static final Class<NotePitch> NOTE_PITCH = NotePitch.class;
Expand All @@ -260,10 +240,6 @@ public final class CatalogTypes {

public static final Class<PickupRule> PICKUP_RULE = PickupRule.class;

public static final Class<PistonType> PISTON_TYPE = PistonType.class;

public static final Class<PlantType> PLANT_TYPE = PlantType.class;

public static final Class<PopulatorObject> POPULATOR_OBJECT = PopulatorObject.class;

public static final Class<PopulatorType> POPULATOR_TYPE = PopulatorType.class;
Expand All @@ -274,37 +250,25 @@ public final class CatalogTypes {

public static final Class<PotionEffectType> POTION_EFFECT_TYPE = PotionEffectType.class;

public static final Class<PrismarineType> PRISMARINE_TYPE = PrismarineType.class;

public static final Class<Profession> PROFESSION = Profession.class;

public static final Class<QuartzType> QUARTZ_TYPE = QuartzType.class;

public static final Class<QueryOperationType> QUERY_OPERATION_TYPE = QueryOperationType.class;

public static final Class<RabbitType> RABBIT_TYPE = RabbitType.class;

public static final Class<RailDirection> RAIL_DIRECTION = RailDirection.class;

public static final Class<RecordType> RECORD_TYPE = RecordType.class;
public static final Class<MusicDisc> MUSIC_DISC = MusicDisc.class;

public static final Class<Rotation> ROTATION = Rotation.class;

public static final Class<SandstoneType> SANDSTONE_TYPE = SandstoneType.class;

public static final Class<SandType> SAND_TYPE = SandType.class;

public static final Class<SelectorType> SELECTOR_TYPE = SelectorType.class;

public static final Class<SerializationBehavior> SERIALIZATION_BEHAVIOR = SerializationBehavior.class;

public static final Class<ShrubType> SHRUB_TYPE = ShrubType.class;

public static final Class<SkinPart> SKIN_PART = SkinPart.class;

public static final Class<SkullType> SKULL_TYPE = SkullType.class;

public static final Class<SlabType> SLAB_TYPE = SlabType.class;
public static final Class<SlabPortion> SLAB_PORTION = SlabPortion.class;

public static final Class<SoundCategory> SOUND_CATEGORY = SoundCategory.class;

Expand All @@ -318,14 +282,10 @@ public final class CatalogTypes {

public static final Class<StatisticType> STATISTIC_TYPE = StatisticType.class;

public static final Class<StoneType> STONE_TYPE = StoneType.class;

public static final Class<StructureMode> STRUCTURE_MODE = StructureMode.class;
public static final Class<TeleportType> TELEPORT_TYPE = TeleportType.class;

public static final Class<TeleportHelperFilter> TELEPORT_HELPER_FILTER = TeleportHelperFilter.class;

public static final Class<TeleportType> TELEPORT_TYPE = TeleportType.class;

public static final Class<TextColor> TEXT_COLOR = TextColor.class;

public static final Class<TextSerializer> TEXT_SERIALIZER = TextSerializer.class;
Expand All @@ -346,8 +306,6 @@ public final class CatalogTypes {

public static final Class<Visibility> VISIBILITY = Visibility.class;

public static final Class<WallType> WALL_TYPE = WallType.class;

public static final Class<Weather> WEATHER = Weather.class;

public static final Class<WireAttachmentType> WIRE_ATTACHMENT_TYPE = WireAttachmentType.class;
Expand Down