diff --git a/CHANGELOG.md b/CHANGELOG.md index 222761fc..c98165bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +# You're in Grave Danger 2.0.0-beta.2 +Small update to fix an issue with iris + +### Fixes + * Using iris, graves used to render completely white when glowing grave render config +was enabled. It should now appear normally with just a white glowing outline + + +--- + # You're in Grave Danger 2.0.0-beta.1 **NOTE: This version is a rewrite of previous versions of the mod for minecraft 1.20 and above. It will not be backwards compatible with previous versions of the mod.** diff --git a/gradle.properties b/gradle.properties index 56f3aa21..a25d4989 100644 --- a/gradle.properties +++ b/gradle.properties @@ -8,7 +8,7 @@ org.gradle.parallel=true loader_version=0.14.21 # Mod Properties - mod_version = 2.0.0-beta.1 + mod_version = 2.0.0-beta.2 maven_group = com.b1n_ry.yigd archives_base_name = youre-in-grave-danger diff --git a/src/main/java/com/b1n_ry/yigd/mixin/WorldRendererMixin.java b/src/main/java/com/b1n_ry/yigd/mixin/WorldRendererMixin.java index 0a09c634..727a74c4 100644 --- a/src/main/java/com/b1n_ry/yigd/mixin/WorldRendererMixin.java +++ b/src/main/java/com/b1n_ry/yigd/mixin/WorldRendererMixin.java @@ -11,7 +11,8 @@ public abstract class WorldRendererMixin { /** * It just works - Tod Howard * I *think* this will render the block entities on the entity rendering profile, allowing them to have entity outlines - * Kinda cursed if this is the case, I feel like, but I don't know how else to do it ¯\_(ツ)_/¯ + * I feel like this is kinda cursed if this is the case, but I don't know how else to do it ¯\_(ツ)_/¯ + * Also it seems to work, as long as the rendering on the outline render layer is an actual outline vertex consumer */ @SuppressWarnings("InvalidInjectorMethodSignature") @ModifyVariable(method = "render", at = @At(value = "CONSTANT", args = "stringValue=blockentities", ordinal = 0), ordinal = 3)