Jump to content

Question on food 1.15.2 (newbie question)


daveash

Recommended Posts

Hi, 

 

New to the board. I have a C#, javascript, C++ background, but haven't coded in 5 years, so I believe this is a newb question:  I'm making a super food that gives temporary effects for a battle (i.e. eat a chicken leg and get one minute of strength, etc)  Here's my class:

 

public class ChickenLeg extends Item  {
    public ChickenLeg() {
        super(new Item.Properties().food(new Food.Builder()
                .hunger(4)
                .meat()
                .saturation(6.0f)
                .build()
        ).group(RaydenHall.CUSTOM_ITEMS));
    }

 

When I do .effect, all the examples I see are for what IntelliJ is saying is a deprecated item.

.effect(EffectInstance effectIn, float probability)

verses the new way:

.effect(Supplier<EffectInstance> effectIn, float probability)


Is is possible to get an example on how to use the new method?  I've tried to find one and all I get are examples of the old way.

 

Thank you and thank you for forge.  I've had fun reconnecting with my programming roots.
 

 

Link to comment
Share on other sites

3 minutes ago, daveash said:

Is is possible to get an example on how to use the new method?  I've tried to find one and all I get are examples of the old way.

You can pass in a lambda that takes no parameter and returns an instance of EffectInstance.

Something like:

.effect(() -> new EffectInstance(yourDesiredEffect, yourDesiredDuration, effectLevelOrSomething), yourProbability);

 

Some tips:

Spoiler

Modder Support:

Spoiler

1. Do not follow tutorials on YouTube, especially TechnoVision (previously called Loremaster) and HarryTalks, due to their promotion of bad practice and usage of outdated code.

2. Always post your code.

3. Never copy and paste code. You won't learn anything from doing that.

4. 

Quote

Programming via Eclipse's hotfixes will get you nowhere

5. Learn to use your IDE, especially the debugger.

6.

Quote

The "picture that's worth 1000 words" only works if there's an obvious problem or a freehand red circle around it.

Support & Bug Reports:

Spoiler

1. Read the EAQ before asking for help. Remember to provide the appropriate log(s).

2. Versions below 1.11 are no longer supported due to their age. Update to a modern version of Minecraft to receive support.

 

 

Link to comment
Share on other sites

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.