aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoringlettronald <inglettronald@gmail.com>2023-07-21 13:16:28 -0500
committeringlettronald <inglettronald@gmail.com>2023-07-21 13:16:28 -0500
commitaedfea76210c0d45d308c1814d8836ac7e380a9e (patch)
tree269d075ca7354cfcce7fbbe30a4e105bcd741a5c
parent36f717189486b740c8d196cedc2def7ac1625c22 (diff)
downloadDulkirMod-Fabric-aedfea76210c0d45d308c1814d8836ac7e380a9e.tar.gz
DulkirMod-Fabric-aedfea76210c0d45d308c1814d8836ac7e380a9e.tar.bz2
DulkirMod-Fabric-aedfea76210c0d45d308c1814d8836ac7e380a9e.zip
Updated to 1.20.1
-rw-r--r--gradle.properties6
-rw-r--r--src/main/kotlin/com/dulkirfabric/features/RenderTest.kt5
-rw-r--r--src/main/resources/fabric.mod.json4
3 files changed, 8 insertions, 7 deletions
diff --git a/gradle.properties b/gradle.properties
index f327d16..5b53f4c 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -4,8 +4,8 @@ org.gradle.parallel=true
# Fabric Properties
# check these on https://fabricmc.net/develop
-minecraft_version=1.20
-yarn_mappings=1.20+build.1
+minecraft_version=1.20.1
+yarn_mappings=1.20.1+build.10
loader_version=0.14.21
fabric_kotlin_version=1.9.4+kotlin.1.8.21
@@ -15,4 +15,4 @@ maven_group=com.dulkirfabric
archives_base_name=dulkirmod-fabric
# Dependencies
-fabric_version=0.83.0+1.20 \ No newline at end of file
+fabric_version=0.86.0+1.20.1 \ No newline at end of file
diff --git a/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt b/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt
index 8d941d1..4799e0c 100644
--- a/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt
+++ b/src/main/kotlin/com/dulkirfabric/features/RenderTest.kt
@@ -2,6 +2,7 @@ package com.dulkirfabric.features
import com.dulkirfabric.events.EntityLoadEvent
import com.dulkirfabric.events.WorldRenderLastEvent
+import com.dulkirfabric.util.GlowingEntityInterface
import com.dulkirfabric.util.WorldRenderUtils
import meteordevelopment.orbit.EventHandler
import net.minecraft.text.Style
@@ -26,7 +27,7 @@ object RenderTest {
@EventHandler
fun onLoadEnt(event: EntityLoadEvent) {
-// if (event.entity !is GlowingEntityInterface) return
-// event.entity.setDulkirEntityGlow(true, Color(255, 255, 255, 255),false)
+ if (event.entity !is GlowingEntityInterface) return
+ event.entity.setDulkirEntityGlow(true, Color(0, 0, 255, 255),false)
}
} \ No newline at end of file
diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json
index 38818fa..3f6321d 100644
--- a/src/main/resources/fabric.mod.json
+++ b/src/main/resources/fabric.mod.json
@@ -30,9 +30,9 @@
],
"depends": {
"fabricloader": ">=0.14.21",
- "minecraft": "~1.20",
+ "minecraft": "~1.20.1",
"java": ">=17",
- "fabric-api": "0.83.0+1.20",
+ "fabric-api": "0.86.0+1.20.1",
"fabric-language-kotlin": ">=1.8.21"
},
"suggests": {