Remove iron check from fence gate sound translator.

Iron fence gates dont exist (yet)
This commit is contained in:
Ethan 2024-07-02 18:35:19 +08:00
parent 109e4a089a
commit c767b75ffa

View file

@ -36,7 +36,6 @@ import org.geysermc.geyser.util.SoundUtils;
public class FenceGateSoundInteractionTranslator implements BlockSoundInteractionTranslator {
@Override
public void translate(GeyserSession session, Vector3f position, String identifier) {
if (identifier.contains("iron")) return;
boolean open = identifier.contains("open=true");
String materialIdentifier = getMaterialIdentifier(identifier);
float volume = 1.0f;