Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .bugs
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions PATCHED.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -32,6 +32,7 @@
| 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 |
Expand Down Expand Up @@ -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 |
Expand All @@ -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 |
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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
Expand Down
3 changes: 2 additions & 1 deletion src/client/resources/debugify.client.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@
"basic.mc188359.CakeBlockMixin",
"basic.mc188359.ConsumableMixin",
"basic.mc206540.EntityMixin",
"basic.mc259512.LivingEntityMixin"
"basic.mc259512.LivingEntityMixin",
"gameplay.mc136249.LivingEntityMixin"
]
}
1 change: 0 additions & 1 deletion src/main/resources/debugify.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
Loading