не проигрывается звук

Версия Minecraft
1.12.2
112
5
16
Доброго времени суток , пытаюсь добавить музыку в игру , дабы в последствии создать пластинку.

Проблема вот в чем. Звук игра видит , но при попытке проиграть его через /playsound , происходит ничего.

sounds.json
Java:
{
    "astr"
    {
    "category": "record",
    "subtitle": "astr",
    "sounds": [{"name": "rpgmm:music/astr" , "stream" : true}]
    }
}

SoundHandler.class
Java:
{
public class SoundHandler {
    
    public static SoundEvent ASTRONOMIA;
    
    public static void registerSounds() {
        ASTRONOMIA = registerSound("astr");
    }

    public static SoundEvent registerSound(String name) {
        ResourceLocation location = new ResourceLocation(Reference.MODID, name);
        SoundEvent event = new SoundEvent(location);
        event.setRegistryName(name);
        ForgeRegistries.SOUND_EVENTS.register(event);
        return event;
    }
}
}

Ни крашей , ничего . Просто не проигрывает звук.
Сам звук в формате .ogg
 
Решение
Вместо
Java:
{
    "astr"
    {
    "category": "record",
    "subtitle": "astr",
    "sounds": [{"name": "rpgmm:music/astr" , "stream" : true}]
    }
}

Попробуй


Java:
{
    "astr":
    {
    "category": "record",
    "subtitle": "astr",
    "sounds": [{"name": "rpgmm:music/astr" , "stream" : true}]
    }
}
Сверху