Skip to content

Commit

Permalink
1.20.2
Browse files Browse the repository at this point in the history
  • Loading branch information
r0yzer committed Nov 5, 2023
1 parent 470594b commit 987ea0e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
import com.modrinth.minotaur.dependencies.ModDependency

plugins {
kotlin("jvm") version "1.8.22"
kotlin("plugin.serialization") version "1.8.22"
id("fabric-loom") version "1.2-SNAPSHOT"
kotlin("jvm") version "1.9.20"
kotlin("plugin.serialization") version "1.9.20"
id("fabric-loom") version "1.4-SNAPSHOT"
id("com.modrinth.minotaur") version "2.8.1"
id("org.quiltmc.quilt-mappings-on-loom") version "4.2.3"
id("io.github.juuxel.loom-quiltflower") version "1.9.0"
id("com.matthewprenger.cursegradle") version "1.4.0"
}

group = "de.royzer"
version = "1.3.2"
version = "1.3.4"

val minecraftVersion = "1.20.1"
val minecraftVersion = "1.20.2"

repositories {
mavenCentral()
Expand All @@ -23,10 +23,10 @@ repositories {
dependencies {
minecraft("com.mojang:minecraft:$minecraftVersion")
mappings(loom.officialMojangMappings())
modImplementation("net.fabricmc:fabric-loader:0.14.21")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.83.1+1.20.1")
modImplementation("net.fabricmc:fabric-language-kotlin:1.9.5+kotlin.1.8.22")
modApi("com.terraformersmc:modmenu:7.0.1")
modImplementation("net.fabricmc:fabric-loader:0.14.24")
modImplementation("net.fabricmc.fabric-api:fabric-api:0.90.7+1.20.2")
modImplementation("net.fabricmc:fabric-language-kotlin:1.10.13+kotlin.1.9.20")
modApi("com.terraformersmc:modmenu:8.0.0")
}

tasks {
Expand Down Expand Up @@ -89,6 +89,6 @@ curseforge {

configurations.all {
resolutionStrategy {
force("net.fabricmc:fabric-loader:0.14.21")
// force("net.fabricmc:fabric-loader:0.14.21")
}
}
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ class PerspektiveSettingsScreen(
}

override fun render(guiGraphics: GuiGraphics, i: Int, j: Int, f: Float) {
renderBackground(guiGraphics)
// renderBackground(guiGraphics)
super.render(guiGraphics, i, j, f)
}
}
Expand Down

0 comments on commit 987ea0e

Please sign in to comment.