Merge branch '1.17' of https://github.com/DimensionalDevelopment/DimDoors into 1.17
This commit is contained in:
commit
a3650576a9
4 changed files with 14 additions and 9 deletions
17
build.gradle
17
build.gradle
|
@ -45,6 +45,11 @@ repositories {
|
||||||
url = "https://dl.bintray.com/ladysnake/libs"
|
url = "https://dl.bintray.com/ladysnake/libs"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
maven {
|
||||||
|
name = 'Ladysnake Mods'
|
||||||
|
url = 'https://ladysnake.jfrog.io/artifactory/mods'
|
||||||
|
}
|
||||||
|
|
||||||
maven {
|
maven {
|
||||||
url = "https://maven.shedaniel.me/"
|
url = "https://maven.shedaniel.me/"
|
||||||
}
|
}
|
||||||
|
@ -123,12 +128,12 @@ dependencies {
|
||||||
// includeCompile("io.github.BoogieMonster1O1", "OpenWorlds", "c57e3ef")
|
// includeCompile("io.github.BoogieMonster1O1", "OpenWorlds", "c57e3ef")
|
||||||
includeCompile("io.github.cottonmc", "LibGui", "4.0.0-alpha.1+21w11a")
|
includeCompile("io.github.cottonmc", "LibGui", "4.0.0-alpha.1+21w11a")
|
||||||
includeCompile("me.shedaniel.cloth", "cloth-config-fabric", "5.0.16")
|
includeCompile("me.shedaniel.cloth", "cloth-config-fabric", "5.0.16")
|
||||||
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-base", "3.0.0-nightly.21w06a")
|
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-base", "3.0.0-nightly.21w14a")
|
||||||
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-item", "3.0.0-nightly.21w06a")
|
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-item", "3.0.0-nightly.21w14a")
|
||||||
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-level", "3.0.0-nightly.21w06a")
|
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-level", "3.0.0-nightly.21w14a")
|
||||||
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-util", "3.0.0-nightly.21w06a")
|
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-util", "3.0.0-nightly.21w14a")
|
||||||
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-world", "3.0.0-nightly.21w06a")
|
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-world", "3.0.0-nightly.21w14a")
|
||||||
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-chunk", "3.0.0-nightly.21w06a")
|
includeCompile("io.github.onyxstudios.Cardinal-Components-API", "cardinal-components-chunk", "3.0.0-nightly.21w14a")
|
||||||
includeCompile("me.sargunvohra.mcmods", "autoconfig1u", "3.3.1")
|
includeCompile("me.sargunvohra.mcmods", "autoconfig1u", "3.3.1")
|
||||||
includeCompile("dev.hephaestus", "seedy-behavior", "1.0.1")
|
includeCompile("dev.hephaestus", "seedy-behavior", "1.0.1")
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@ import org.dimdev.dimdoors.block.entity.RiftBlockEntity;
|
||||||
import org.dimdev.dimdoors.network.ServerPacketHandler;
|
import org.dimdev.dimdoors.network.ServerPacketHandler;
|
||||||
import org.dimdev.dimdoors.rift.targets.IdMarker;
|
import org.dimdev.dimdoors.rift.targets.IdMarker;
|
||||||
import org.dimdev.dimdoors.api.util.EntityUtils;
|
import org.dimdev.dimdoors.api.util.EntityUtils;
|
||||||
import org.dimdev.dimdoors.world.level.component.CounterComponent;
|
import org.dimdev.dimdoors.item.component.CounterComponent;
|
||||||
|
|
||||||
import net.minecraft.block.entity.BlockEntity;
|
import net.minecraft.block.entity.BlockEntity;
|
||||||
import net.minecraft.client.item.TooltipContext;
|
import net.minecraft.client.item.TooltipContext;
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
package org.dimdev.dimdoors.world.level.component;
|
package org.dimdev.dimdoors.item.component;
|
||||||
|
|
||||||
import dev.onyxstudios.cca.api.v3.item.ItemComponent;
|
import dev.onyxstudios.cca.api.v3.item.ItemComponent;
|
||||||
import org.dimdev.dimdoors.world.level.DimensionalDoorsComponents;
|
import org.dimdev.dimdoors.world.level.DimensionalDoorsComponents;
|
|
@ -12,7 +12,7 @@ import dev.onyxstudios.cca.api.v3.level.LevelComponentFactoryRegistry;
|
||||||
import dev.onyxstudios.cca.api.v3.level.LevelComponentInitializer;
|
import dev.onyxstudios.cca.api.v3.level.LevelComponentInitializer;
|
||||||
import org.dimdev.dimdoors.item.ModItems;
|
import org.dimdev.dimdoors.item.ModItems;
|
||||||
import org.dimdev.dimdoors.world.level.component.ChunkLazilyGeneratedComponent;
|
import org.dimdev.dimdoors.world.level.component.ChunkLazilyGeneratedComponent;
|
||||||
import org.dimdev.dimdoors.world.level.component.CounterComponent;
|
import org.dimdev.dimdoors.item.component.CounterComponent;
|
||||||
import org.dimdev.dimdoors.world.level.registry.DimensionalRegistry;
|
import org.dimdev.dimdoors.world.level.registry.DimensionalRegistry;
|
||||||
|
|
||||||
@SuppressWarnings("UnstableApiUsage")
|
@SuppressWarnings("UnstableApiUsage")
|
||||||
|
|
Loading…
Reference in a new issue