From 0ecd861944534ea9cb3d0b781ec2364fdb724e92 Mon Sep 17 00:00:00 2001 From: MicrocontrollersDev Date: Wed, 11 Mar 2026 16:09:04 -0500 Subject: [PATCH 1/2] move MC-136249 to client side and gameplay --- .bugs | 2 +- PATCHED.md | 8 ++++---- .../mixins/gameplay}/mc136249/LivingEntityMixin.java | 4 ++-- src/client/resources/debugify.client.mixins.json | 3 ++- src/main/resources/debugify.mixins.json | 1 - 5 files changed, 9 insertions(+), 9 deletions(-) rename src/{main/java/dev/isxander/debugify/mixins/basic => client/java/dev/isxander/debugify/client/mixins/gameplay}/mc136249/LivingEntityMixin.java (81%) diff --git a/.bugs b/.bugs index 7992f1ab..d2217cd4 100644 --- a/.bugs +++ b/.bugs @@ -46,6 +46,7 @@ patched 268420 client basic patched 280220 client basic patched 298225 client basic patched 298558 client basic +patched 136249 client gameplay patched 2025 server basic patched 7569 server basic @@ -67,7 +68,6 @@ patched 123605 server basic patched 129909 server basic patched 132878 server basic patched 134110 server basic -patched 136249 server basic patched 139041 server basic patched 147659 server basic patched 155509 server basic diff --git a/PATCHED.md b/PATCHED.md index ce47818f..2c128ab7 100644 --- a/PATCHED.md +++ b/PATCHED.md @@ -2,7 +2,7 @@ !!!! DO NOT UPDATE THIS FILE MANUALLY !!!! Generated by `./gradlew generatePatchedTable` Sourced from `.bugs` - Generated 2026-01-12T19:42:10.274092984 + Generated 2026-03-11T15:56:55.241821331 --> # List of Patched Bugs @@ -32,9 +32,10 @@ | Basic | [MC-122477](https://mojira.dev/MC-122477) | Linux/GNU: Opening chat sometimes writes 't' | | Basic | [MC-122627](https://mojira.dev/MC-122627) | Tab suggestion box has missing padding on right side | | Basic | [MC-127970](https://mojira.dev/MC-127970) | Using Riptide on a trident with an item in your off-hand causes visual glitch with said item | + | Gameplay | [MC-136249](https://mojira.dev/MC-136249) | Wearing boots enchanted with depth strider decreases the strength of the riptide enchantment | | Basic | [MC-143474](https://mojira.dev/MC-143474) | Respawning causes your hotbar to reset to the first space | | Gameplay | [MC-159163](https://mojira.dev/MC-159163) | Quickly pressing the sneak key causes the sneak animation to play twice | - | Basic | [MC-165306](https://mojira.dev/MC-165306) | Beacon beams are transparent from the inside | + | Basic | [MC-165306](https://mojira.dev/MC-165306) | | | Basic | [MC-165381](https://mojira.dev/MC-165381) | Block breaking can be delayed by dropping/throwing the tool while breaking a block | | Basic | [MC-168573](https://mojira.dev/MC-168573) | After breaking a shield, the player's off-hand can't finish using some items | | Basic | [MC-176559](https://mojira.dev/MC-176559) | Breaking process resets when a pickaxe enchanted with Mending mends by XP / Mending slows down breaking blocks again | @@ -69,7 +70,7 @@ | Basic | [MC-88371](https://mojira.dev/MC-88371) | Ender Dragon flies down in the void when the exit portal is destroyed | | Basic | [MC-89146](https://mojira.dev/MC-89146) | Pistons forget update when being reloaded | | Basic | [MC-93018](https://mojira.dev/MC-93018) | Wild wolves show breeding hearts but do not breed | - | Basic | [MC-94054](https://mojira.dev/MC-94054) | Cave spiders spin around when walking | + | Basic | [MC-94054](https://mojira.dev/MC-94054) | Cave spiders and spiders with small scale attribute spin around when walking | | Basic | [MC-100991](https://mojira.dev/MC-100991) | Killing entities with a fishing rod doesn't count as a kill | | Basic | [MC-119754](https://mojira.dev/MC-119754) | Firework boosting on elytra continues in spectator mode | | Basic | [MC-121706](https://mojira.dev/MC-121706) | Skeletons and illusioners aren't looking up / down at their target while strafing | @@ -81,7 +82,6 @@ | Basic | [MC-132878](https://mojira.dev/MC-132878) | Armor stands destroyed by explosions/lava/fire don't produce particles | | Basic | [MC-133218](https://mojira.dev/MC-133218) | Usable items continue to be used on the death screen after dying when the "keepInventory" gamerule is set to "true" | | Basic | [MC-134110](https://mojira.dev/MC-134110) | Structure mirroring breaking apart double chests | - | Basic | [MC-136249](https://mojira.dev/MC-136249) | Wearing boots enchanted with depth strider decreases the strength of the riptide enchantment | | Basic | [MC-139041](https://mojira.dev/MC-139041) | The sounds of fishing bobbers aren't controlled by the "Players" sound slider | | Basic | [MC-147659](https://mojira.dev/MC-147659) | Some witch huts spawn the incorrect cat | | Basic | [MC-153010](https://mojira.dev/MC-153010) | doMobLoot gamerule doesn't prevent foxes from dropping their items | diff --git a/src/main/java/dev/isxander/debugify/mixins/basic/mc136249/LivingEntityMixin.java b/src/client/java/dev/isxander/debugify/client/mixins/gameplay/mc136249/LivingEntityMixin.java similarity index 81% rename from src/main/java/dev/isxander/debugify/mixins/basic/mc136249/LivingEntityMixin.java rename to src/client/java/dev/isxander/debugify/client/mixins/gameplay/mc136249/LivingEntityMixin.java index 6a594c3b..372ad7fb 100644 --- a/src/main/java/dev/isxander/debugify/mixins/basic/mc136249/LivingEntityMixin.java +++ b/src/client/java/dev/isxander/debugify/client/mixins/gameplay/mc136249/LivingEntityMixin.java @@ -1,4 +1,4 @@ -package dev.isxander.debugify.mixins.basic.mc136249; +package dev.isxander.debugify.client.mixins.gameplay.mc136249; import com.llamalad7.mixinextras.expression.Definition; import com.llamalad7.mixinextras.expression.Expression; @@ -10,7 +10,7 @@ import org.spongepowered.asm.mixin.Shadow; import org.spongepowered.asm.mixin.injection.At; -@BugFix(id = "MC-136249", category = FixCategory.BASIC, env = BugFix.Env.SERVER, description = "Wearing boots enchanted with depth strider decreases the strength of the riptide enchantment") +@BugFix(id = "MC-136249", category = FixCategory.GAMEPLAY, env = BugFix.Env.CLIENT, description = "Wearing boots enchanted with depth strider decreases the strength of the riptide enchantment") @Mixin(LivingEntity.class) public abstract class LivingEntityMixin{ @Shadow diff --git a/src/client/resources/debugify.client.mixins.json b/src/client/resources/debugify.client.mixins.json index 8415f03c..64609e65 100644 --- a/src/client/resources/debugify.client.mixins.json +++ b/src/client/resources/debugify.client.mixins.json @@ -65,6 +65,7 @@ "basic.mc188359.CakeBlockMixin", "basic.mc188359.ConsumableMixin", "basic.mc206540.EntityMixin", - "basic.mc259512.LivingEntityMixin" + "basic.mc259512.LivingEntityMixin", + "gameplay.mc136249.LivingEntityMixin" ] } diff --git a/src/main/resources/debugify.mixins.json b/src/main/resources/debugify.mixins.json index 8538cead..e2e26fa8 100644 --- a/src/main/resources/debugify.mixins.json +++ b/src/main/resources/debugify.mixins.json @@ -23,7 +23,6 @@ "basic.mc132878.ArmorStandMixin", "basic.mc133218.ServerPlayerMixin", "basic.mc134110.ChestBlockMixin", - "basic.mc136249.LivingEntityMixin", "basic.mc139041.FishingRodItemMixin", "basic.mc147659.CatSpawnerMixin", "basic.mc153010.FoxMixin", From 5028c477e22f6ad94143f8052e664b9bec090da9 Mon Sep 17 00:00:00 2001 From: MicrocontrollersDev Date: Wed, 11 Mar 2026 16:11:52 -0500 Subject: [PATCH 2/2] mojira.dev seems to be having some trouble --- PATCHED.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PATCHED.md b/PATCHED.md index 2c128ab7..cd2577f0 100644 --- a/PATCHED.md +++ b/PATCHED.md @@ -35,7 +35,7 @@ | Gameplay | [MC-136249](https://mojira.dev/MC-136249) | Wearing boots enchanted with depth strider decreases the strength of the riptide enchantment | | Basic | [MC-143474](https://mojira.dev/MC-143474) | Respawning causes your hotbar to reset to the first space | | Gameplay | [MC-159163](https://mojira.dev/MC-159163) | Quickly pressing the sneak key causes the sneak animation to play twice | - | Basic | [MC-165306](https://mojira.dev/MC-165306) | | + | Basic | [MC-165306](https://mojira.dev/MC-165306) | Beacon beams are transparent from the inside | | Basic | [MC-165381](https://mojira.dev/MC-165381) | Block breaking can be delayed by dropping/throwing the tool while breaking a block | | Basic | [MC-168573](https://mojira.dev/MC-168573) | After breaking a shield, the player's off-hand can't finish using some items | | Basic | [MC-176559](https://mojira.dev/MC-176559) | Breaking process resets when a pickaxe enchanted with Mending mends by XP / Mending slows down breaking blocks again |