Remove iron check on fence gate sound translator

iron fence gates dont exist lol
This commit is contained in:
Ethan 2024-07-02 18:33:55 +08:00
parent 3a42b98b77
commit f9ce9f32ee

View file

@ -36,8 +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;
GeyserImpl.getInstance().getLogger().info(identifier);
boolean open = identifier.contains("open=true");
String materialIdentifier = getMaterialIdentifier(identifier);
float volume = 1.0f;