This behavior was introduced in 25w21a.
Rather than walking normally, sniffers have an incorrect crawling animation.
Steps to reproduce
Spawn a sniffer.
Wait for it to start moving.
Observe that it crawls instead of walking.
Observed behavior
The sniffer will crawl along the ground.
Expected behavior
The sniffer would walk with its feet.
Code analysis (official mappings)
The field used to control the animation in the SnifferModel
class is initialized incorrectly, possibly due to a copy-paste error:
- this.walkAnimation = SnifferAnimation.SNIFFER_DIG.bake(arg);
+ this.walkAnimation = SnifferAnimation.SNIFFER_WALK.bake(arg);
Linked issues
is duplicated by 3
Attachments
Comments 0
No comments.