Jump to content

[1.11.2] Playing custom sound won't work.


Dombear

Recommended Posts

Hello, I've made a custom sound and test event to play it, but it won't work. When I break block nothing happens. What is wrong with my code?

sounds.json

{
	"item.soulshot.activated": {
		"category": "player",
		"subtitle": "item.soulshot.activated",
		"sounds": [ 
            { 
                "name": "lineagecraft:item/soulshot/activated", 
                "stream": true 
            } 
	   ]
	}
}

Sound handler

public class SoundHandler {
	private static int size = 0;
	
	public static SoundEvent SOULSHOT_ACTIVATED;
	
	public static void init(){
		size = SoundEvent.REGISTRY.getKeys().size();
		
		SOULSHOT_ACTIVATED = register("item.soulshot.activated");
	}
	
	public static SoundEvent register(String name){
		ResourceLocation location = new ResourceLocation(Reference.MOD_ID, name);
		SoundEvent e = new SoundEvent(location);
		
		SoundEvent.REGISTRY.register(size, location, e);
		size++;
		return e;
	}
}

Event with playSound

@SubscribeEvent
	public void onTest(BreakEvent event){
		event.getPlayer().sendMessage(new TextComponentString("Block break"));
		event.getWorld().playSound(event.getPlayer(), event.getPlayer().getPosition(), SoundHandler.SOULSHOT_ACTIVATED, SoundCategory.PLAYERS, 1.0F, 1.0F);
	}

init

@EventHandler
	public void init(FMLInitializationEvent event){
		SoundHandler.init();
	}

 

Link to comment
Share on other sites

  • 2 weeks later...

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...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

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