mirror of
https://github.com/GeyserMC/Geyser.git
synced 2024-08-14 23:57:35 +00:00
Remove unnecessary curly braces
This commit is contained in:
parent
c767b75ffa
commit
33b2fd615a
2 changed files with 2 additions and 2 deletions
|
|
@ -31,7 +31,7 @@ import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
|||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||
import org.geysermc.geyser.util.SoundUtils;
|
||||
|
||||
@SoundTranslator(blocks = {"door"})
|
||||
@SoundTranslator(blocks = "door")
|
||||
public class DoorSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||
@Override
|
||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ import org.geysermc.geyser.translator.sound.BlockSoundInteractionTranslator;
|
|||
import org.geysermc.geyser.translator.sound.SoundTranslator;
|
||||
import org.geysermc.geyser.util.SoundUtils;
|
||||
|
||||
@SoundTranslator(blocks = {"fence_gate"})
|
||||
@SoundTranslator(blocks = "fence_gate")
|
||||
public class FenceGateSoundInteractionTranslator implements BlockSoundInteractionTranslator {
|
||||
@Override
|
||||
public void translate(GeyserSession session, Vector3f position, String identifier) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue