[Change] Separated all World-Load related code to a new namespace
This commit is contained in:
parent
67d09676c4
commit
25fa53541f
79 changed files with 1924 additions and 814 deletions
|
@ -7,15 +7,13 @@
|
|||
"AnvilScreenMixin",
|
||||
"BlockMixin",
|
||||
"ClientRecipeBookMixin",
|
||||
"CreateWorldScreenMixin",
|
||||
"FogRendererMixin",
|
||||
"GameMixin",
|
||||
"MinecraftMixin",
|
||||
"ModelBakeryMixin",
|
||||
"ModelManagerMixin",
|
||||
"SignEditScreenMixin",
|
||||
"TextureAtlasMixin",
|
||||
"WorldGenSettingsComponentMixin"
|
||||
"TextureAtlasMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
"ItemStackMixin",
|
||||
"LayerLightSectionStorageMixin",
|
||||
"LootPoolMixin",
|
||||
"MainMixin",
|
||||
"MinecraftServerMixin",
|
||||
"MinecraftServerMixinLate",
|
||||
"MobSpawnSettingsAccessor",
|
||||
|
@ -33,22 +32,15 @@
|
|||
"PortalShapeMixin",
|
||||
"PotionBrewingAccessor",
|
||||
"PresetEditorMixin",
|
||||
"PrimaryLevelDataMixin",
|
||||
"RecipeManagerAccessor",
|
||||
"RecipeManagerMixin",
|
||||
"RegistryOpsAccessor",
|
||||
"ServerLevelMixin",
|
||||
"ShovelItemAccessor",
|
||||
"StructuresAccessor",
|
||||
"SurfaceRulesContextAccessor",
|
||||
"TagLoaderMixin",
|
||||
"TheEndBiomeDataMixin",
|
||||
"WorldGenPropertiesMixin",
|
||||
"WorldGenRegionMixin",
|
||||
"WorldOpenFlowsMixin",
|
||||
"WorldPresetAccessor",
|
||||
"WorldPresetMixin",
|
||||
"WorldPresetsBootstrapMixin",
|
||||
"elytra.LivingEntityMixin",
|
||||
"shears.BeehiveBlockMixin",
|
||||
"shears.DiggingEnchantmentMixin",
|
||||
|
|
|
@ -33,6 +33,8 @@
|
|||
},
|
||||
"accessWidener": "bclib.accesswidener",
|
||||
"mixins": [
|
||||
"together.mixins.common.json",
|
||||
"together.mixins.client.json",
|
||||
"bclib.mixins.common.json",
|
||||
"bclib.mixins.client.json"
|
||||
],
|
||||
|
|
14
src/main/resources/together.mixins.client.json
Normal file
14
src/main/resources/together.mixins.client.json
Normal file
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "org.betterx.worlds.together.mixin.client",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"client": [
|
||||
"CreateWorldScreenMixin",
|
||||
"WorldGenSettingsComponentMixin",
|
||||
"WorldOpenFlowsMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
18
src/main/resources/together.mixins.common.json
Normal file
18
src/main/resources/together.mixins.common.json
Normal file
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"required": true,
|
||||
"minVersion": "0.8",
|
||||
"package": "org.betterx.worlds.together.mixin.common",
|
||||
"compatibilityLevel": "JAVA_17",
|
||||
"mixins": [
|
||||
"MainMixin",
|
||||
"PrimaryLevelDataMixin",
|
||||
"RegistryOpsAccessor",
|
||||
"WorldGenPropertiesMixin",
|
||||
"WorldPresetAccessor",
|
||||
"WorldPresetMixin",
|
||||
"WorldPresetsBootstrapMixin"
|
||||
],
|
||||
"injectors": {
|
||||
"defaultRequire": 1
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue