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

I need to check if it's raining on a particular block. The isRaining() method checks if it's raining globally, the isRainingAt() method just doesn't seem to work, it always returns false. 

 

    @SubscribeEvent
    public void EntityPlaceEvent(EntityPlaceEvent event) {
    	
    	World world = event.getEntity().world;
    	BlockPos blockpos = event.getPos();
    	BlockState blockstate = world.getBlockState(blockpos);
    	
    	if (event.getState().getBlock() == Blocks.CAMPFIRE && world.isRainingAt(blockpos)) {
    		
    		world.setBlockState(blockpos, blockstate.with(CampfireBlock.LIT, false));
    	}
    }

 

Edited by MineModder2000

 I went to look at the isRainingAt() method, and it does some other checks which is why its returning false. However, if you check what biome you are in and if it can rain in the first place, then you can get the expected result:

 

world.getBiome(position).getPrecipitation() == Biome.RainType.RAIN && world.isRaining()

 

This just checks the biome the positions in, and see if it can actually rain. If so, then check if its raining. If both are true, it must be raining at that position. If the biome doesn't allow to rain, and it is raining (as rain happens everywhere), then it'll return false (ex. in a desert).

Edited by unassigned
quoted post.

Don't forget that blocks that are underground still need to check to see if they can see the sky.

Apparently I'm a complete and utter jerk and come to this forum just like to make fun of people, be confrontational, and make your personal life miserable.  If you think this is the case, JUST REPORT ME.  Otherwise you're just going to get reported when you reply to my posts and point it out, because odds are, I was trying to be nice.

 

Exception: If you do not understand Java, I WILL NOT HELP YOU and your thread will get locked.

 

DO NOT PM ME WITH PROBLEMS. No help will be given.

  • Author
14 hours ago, unassigned said:

 I went to look at the isRainingAt() method, and it does some other checks which is why its returning false. However, if you check what biome you are in and if it can rain in the first place, then you can get the expected result:

 


world.getBiome(position).getPrecipitation() == Biome.RainType.RAIN && world.isRaining()

 

This just checks the biome the positions in, and see if it can actually rain. If so, then check if its raining. If both are true, it must be raining at that position. If the biome doesn't allow to rain, and it is raining (as rain happens everywhere), then it'll return false (ex. in a desert).

 

Actually not so unassigned, this doesn't account for covering. If a block is a under a tree for example, it won't get rain on it, but according to these checks it is raining. 

  • Author
14 hours ago, Draco18s said:

Don't forget that blocks that are underground still need to check to see if they can see the sky.

Oh I just realized that there is a canBlockSeeSky(pos) method inside of world, that's what I needed to check in addition. All working now ?

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.