Jump to content

Recommended Posts

Posted

I am trying to prevent a vanilla block from being placed under certain circumstances. I have used BlockEvent#PlaceEvent and PlayerInteractEvent#RightClickBlock successfully; however, a brief image of the block always appears on the screen, then quickly disappears. I would prefer to cancel the block placement without this brief image flashing on the screen. Is there a way to intercept the placement earlier? I've looked over the available events and didn't find anything else that seemed like it would work, but perhaps I'm missing something.

 

I have also noticed that when canceling the block placement, the ItemStack size decreases, yet if I move the stack to a different inventory slot or log out and back in, it magically jumps back up to the original size—or even reappears from nothing if the stack was completely depleted. Anyone know what's up with that? Do I need to, like, manually modify the ItemStack to prevent that before canceling the event? Seems weird.

  • Like 1
Posted (edited)

It's...not complicated. Well, eventually I'll add more to check whatever conditions I'm interested in. For now I just wanted to make sure it would work at all, and I'm not happy with how the block appears briefly.

 

	@SubscribeEvent
	public void onBlockPlaced(BlockEvent.PlaceEvent event)
	{
	    if (!event.getWorld().isRemote)
	    {
	        if (event.getPlacedBlock().getBlock() == Blocks.DIRT)
	        {
	            event.setCanceled(true);
	        }
	    }
	}
	
Edited by Daeruin
Added more description.
Posted

You got an issue of brief Client-Server mis-match

 

Server: Didn't allow the thing. -Your code did this

Client: Allowed the thing. -Running as usual

Server: No you didn't. -Client updates with data from Server

 

Solution: Remove the World#isRemote check

  • Like 2

Also previously known as eAndPi.

"Pi, is there a station coming up where we can board your train of thought?" -Kronnn

Published Mods: Underworld

Handy links: Vic_'s Forge events Own WIP Tutorials.

Posted
18 minutes ago, Matryoshika said:

You got an issue of brief Client-Server mis-match

 

Server: Didn't allow the thing. -Your code did this

Client: Allowed the thing. -Running as usual

Server: No you didn't. -Client updates with data from Server

 

Solution: Remove the World#isRemote check

 

Interesting. That worked great in the PlayerInteractEvent, but not in BlockEvent#PlaceEvent. Perhaps PlaceEvent is only called on one side? There's nothing in the Javadoc about that, but it would make sense given the behavior. That's sad. I was excited to discover that event. It seemed like just what I needed.

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.