Jump to content

Recommended Posts

Posted

Hey, so i'm trying to make a mod which modifies the vanilla Vine block to not be affected by game ticks which thereby leads to not growing Horizontally or Vertically.

I'm using Forge 41.0.63 (Since most mods I use are broken after 41.0.64)

If anybody knows a way to modify the BlockProperties of a Vine and if possible NOT adding a new Block I would appreciate any answer!

Posted
4 minutes ago, diesieben07 said:

Set BlockBehaviour#isRandomlyTicking to false for the vine block in FMLCommonSetupEvent#enqueueWork using reflection.

I'm kinda new.
Can you say what i have to do more specifically?

Posted

I don't know how he can be more specific without writing your mod for you. 🙂

 

Anyway, you can't use reflection because the field is final.

Instead you would need to use an access transformer to make the isRandomlyTicking field in the BlockBehaviour class non-final and public:

https://forge.gemwire.uk/wiki/Access_Transformers

 

Mod lifecycle events like FMLCommonSetupEvent are explained in the docs here:

https://docs.minecraftforge.net/en/latest/concepts/lifecycle/

or you can see an example in the mdk.

 

Something like (untested code):

        event.enqueueWork(() -> {
            Block vineBlock = ForgeRegistries.BLOCKS.getValue(new ResourceLocation("minecraft:vine"));
            vineBlock.isRandomlyTicking = false;
        });

 

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

Posted
2 minutes ago, warjort said:

I don't know how he can be more specific without writing your mod for you. 🙂

 

Anyway, you can't use reflection because the field is final.

Instead you would need to use an access transformer to make the isRandomlyTicking field in the BlockBehaviour class non-final and public:

https://forge.gemwire.uk/wiki/Access_Transformers

 

Mod lifecycle events like FMLCommonSetupEvent are explained in the docs here:

https://docs.minecraftforge.net/en/latest/concepts/lifecycle/

or you can see an example in the mdk.

 

Something like (untested code):

        event.enqueueWork(() -> {
            Block vineBlock = ForgeRegistries.BLOCKS.getValue(new ResourceLocation("minecraft:vine"));
            vineBlock.isRandomlyTicking = false;
        });

 

Yea you are right ^^

okay i'll take a look into it. Thanks to both of you!

Posted
1 hour ago, diesieben07 said:

Actually you can modify final fields using reflection. Only static final fields won't work.

Never knew that. The static final not working is probably more due to compiler "inlining" the value?

Boilerplate:

If you don't post your logs/debug.log we can't help you. For curseforge you need to enable the forge debug.log in its minecraft settings. You should also post your crash report if you have one.

If there is no error in the log file and you don't have a crash report then post the launcher_log.txt from the minecraft folder. Again for curseforge this will be in your curseforge/minecraft/Install

Large files should be posted to a file sharing site like https://gist.github.com  You should also read the support forum sticky post.

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.