fabric/fabric-dimensions-v1/build.gradle
Juuxel 2ad15631c8 Fix day/night-cycle enabling in World.isDay and World.isNight being
hardcoded for Overworld, use Dimension.hasVisibleSky instead.

- World.isDay() and World.isNight() are now un-hardcoded.
  Instead of checking for the overworld, they check for a visible sky
  like clocks. The check is false for the nether and the end,
  so vanilla behaviour stays the same.
2020-03-05 13:43:51 +01:00

8 lines
317 B
Groovy

archivesBaseName = "fabric-dimensions-v1"
version = getSubprojectVersion(project, "0.3.0")
dependencies {
compile project(path: ':fabric-api-base', configuration: 'dev')
compile project(path: ':fabric-networking-v0', configuration: 'dev')
compile project(path: ':fabric-registry-sync-v0', configuration: 'dev')
}