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.

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

Featured Replies

Posted

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'.

  • Author

public class BLInstinct extends Effect {

    public BLInstinct(EffectType type, int hexColor){

          super(EffectType.NEUTRAL,0x993333);

           }

}

  • Author
7 minutes ago, diesieben07 said:

Show the BLInstinct class.

public class BLInstinct extends Effect {

    public BLInstinct(EffectType type, int hexColor){

          super(EffectType.NEUTRAL,0x993333);

           }

}

  • Author
16 minutes ago, diesieben07 said:

Look at which arguments the register method requires. Look at what you are providing it. Realize it does not match up, then fix it.

I don not know where does not match up.

  • Author

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

  • Author

@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.

 

  • Author
@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"));
    }

 

9 minutes ago, diesieben07 said:

Is the event handler called? Check using the debugger.

Did you check that?

  • Author
@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?

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.