-
Bug
-
Resolution: Unresolved
-
None
-
20w51a, (20)
21w03a, 21w05b, 21w06a, 21w07a, 21w08b, 21w16a, 1.17, 21w38a, 21w42a, 1.18.1, 22w07a, 1.18.2, 22w14a, 22w18a, 1.19 Release Candidate 1, 1.19, 1.19.4, 23w17a, 1.20.1, 1.21.4 -
None
-
Confirmed
-
Game Events
-
Low
-
Gameplay
The bug
When ice/snow melts, sculk sensors nearby don't detect this, although it could be considered a vibration.
How to reproduce
- Recreate the setup shown in setup.png
- Replace all diamond blocks in the setup with glowstone so that the ice begins to melt:
/fill ~9 ~-4 ~9 ~-9 ~9 ~-9 minecraft:glowstone replace minecraft:diamond_block
When the ice melts, the sculk sensor is not activated
Expected behavior
The sculk sensor would be activated when the ice (or snow) melted.
Code analysis
Code analysis by Avoma can be found in this comment.
Can confirm in 22w18a. Here's a code analysis regarding this issue.
Code Analysis:
The following is based on a decompiled version of Minecraft 1.18.2 using MCP-Reborn.
If we look at the above classes, we can see that ice and snow melting simply aren't registered as game events as the gameEvent() method is never called, thus not detecting these actions as vibrations.
Potential Fix:
Simply calling the gameEvent() method where appropriate within this piece of code should resolve this problem. The "BLOCK_DESTROY" game event tag would be expected to be used here for both of these actions as ice/snow is removed from the world. The following line of code could be used in order to fix this: