Jump to content

why Inferred type 'I' for type parameter 'I' is not within its bound; should extend 'net.minecraft.potion.Effect'.


Creeper001

Recommended Posts

public static final DeferredRegister<Effect> EFFECTS = DeferredRegister.create(ForgeRegistries.POTIONS, Utils.MOD_ID); 

public static final RegistryObject<Effect> bl_instinct = EFFECTS.register("bl_instinct", BLInstinct::new);

 

 

why Inferred type 'I' for type parameter 'I' is not within its bound; should extend 'net.minecraft.potion.Effect'.

Link to comment
Share on other sites

Inferred type 'I' for type parameter 'I' is not within its bound; should extend 'net.minecraft.potion.Effect'

 

net.minecraftforge.registries.DeferredRegister<T extends IForgeRegistryEntry<T>> public <I extends T> net.minecraftforge.fml.RegistryObject<I> register(String name,
                                                                       java.util.function.Supplier<? extends I> sup

Link to comment
Share on other sites

@SubscribeEvent

public static void onPotionRegistration(RegistryEvent.Register<Effect> event) {

event.getRegistry().registerAll(new BLInstinct(EffectType.NEUTRAL,0x993333).addAttributeModifier(Attributes.MAX_HEALTH,"7107DE5E-7CE8-4030-940E-514C1F160890",0.5f, AttributeModifier.Operation.MULTIPLY_TOTAL).setRegistryName(Utils.MOD_ID, "bl_instinct"));

}

This way no erro,but there is no effect in game.

 

 

52 minutes ago, diesieben07 said:

register requires a supplier for the registry type (in your case Effect). You are giving it a constructor reference that does not match up with the functional interface Supplier. If you don't know what constructor/method references, lambdas and functional interfaces are - look them up. Or don't use them, you can implement the interface normally, too.

 

Link to comment
Share on other sites

@SubscribeEvent
    public static void onPotionRegistration(RegistryEvent.Register<Effect> event) {
        event.getRegistry().registerAll(new BLInstinct(EffectType.NEUTRAL,0x993333).addAttributeModifier(Attributes.MAX_HEALTH,"7107DE5E-7CE8-4030-940E-514C1F160890",0.5f, AttributeModifier.Operation.MULTIPLY_TOTAL).setRegistryName(Utils.MOD_ID, "bl_instinct"));
    }

 

Link to comment
Share on other sites

@Mod.EventBusSubscriber()
public class Registry {
    @SubscribeEvent
    public static void onPotionRegistration(RegistryEvent.Register<Effect> event) {
        event.getRegistry().registerAll(new BLInstinct(EffectType.NEUTRAL,0x993333).addAttributeModifier(Attributes.MAX_HEALTH,"7107DE5E-7CE8-4030-940E-514C1F160890",0.5f, AttributeModifier.Operation.MULTIPLY_TOTAL).setRegistryName(Utils.MOD_ID, "bl_instinct"));
    }
}

@Mod.EventBusSubscriber()

is this event handler?

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.