Jump to content
View in the app

A better way to browse. Learn more.

Forge Forums

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Featured Replies

Posted

Hello, i want to make a new music disc but when i put the disc in the jukebox, i don't have the music

Here my registry for the sound events:

public class ModMusic {
    public static final DeferredRegister<SoundEvent> SOUND_EVENTS =
            DeferredRegister.create(ForgeRegistries.SOUND_EVENTS, bomod.MOD_ID);

    public static final RegistryObject<SoundEvent>  BETRAYAL =
            registerSoundEvent("betrayal");


    private static RegistryObject<SoundEvent> registerSoundEvent(String name) {
        return SOUND_EVENTS.register(name, () -> new SoundEvent(new ResourceLocation(bomod.MOD_ID, name)));
    }
    public static void register (IEventBus eventBus) { SOUND_EVENTS.register(eventBus);}
}

Here my registry for the item music disc:

   public static final RegistryObject<Item> BETRAYAL_DISC = ITEMS.register("betrayal_disc",
            () -> new RecordItem(1, () -> ModMusic.BETRAYAL.get(),
                    new Item.Properties().tab(ModCreativeModeTab.BOMOD_TAB)));

And here my sounds.json:

{
  "betrayal": {
    "sounds": [
      {
        "name": "bomod:sounds/betrayal",
        "stream": true
      }
    ]
  }
}

And i have the betrayal.ogg in the sounds file

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

Important Information

By using this site, you agree to our Terms of Use.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.