1
0
mirror of https://github.com/GeyserMC/Geyser.git synced 2025-12-28 03:09:08 +00:00

DoorSoundInteractionHandler: ignore iron [trap]doors (#1343)

This commit is contained in:
Camotoy
2020-09-29 13:21:43 -04:00
committed by GitHub
parent 9bb52afc8a
commit aee9ccc7d2

View File

@@ -37,6 +37,7 @@ public class DoorSoundInteractionHandler implements BlockSoundInteractionHandler
@Override
public void handleInteraction(GeyserSession session, Vector3f position, String identifier) {
if (identifier.contains("iron")) return;
LevelEventPacket levelEventPacket = new LevelEventPacket();
levelEventPacket.setType(LevelEventType.SOUND_DOOR_OPEN);
levelEventPacket.setPosition(position);