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

  • Author

Override

getEnchantPowerBonus

in your Block.

 

I get the error

 

The method getEnchantPowerBonus() of type AmethystBlock must override or implement a supertype method

 

Full code:

 

package me.thatgamerblue.amethyst.blocks;

import net.minecraft.block.Block;
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraftforge.client.model.ModelLoader;
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
import me.thatgamerblue.amethyst.creative.CreativeTab;

public class AmethystBlock extends Block{

public AmethystBlock() {
	super(Material.IRON); //no idea
	setUnlocalizedName("blockAmethyst");
	setRegistryName("blockAmethyst");
	setLightLevel(0.45f); //light level of 5-6
	setCreativeTab(CreativeTab.amethystCreativeTab);
	setHardness(5.0f); //iron block
	setResistance(10.0f); //iron block
	setHarvestLevel("pickaxe", 2); //iron pick or better
	GameRegistry.register(this);
	GameRegistry.register(new ItemBlock(this), getRegistryName());
}

@SideOnly(Side.CLIENT)
public void initModel() {
	ModelLoader.setCustomModelResourceLocation(Item.getItemFromBlock(this), 0, new ModelResourceLocation(getRegistryName(), "inventory"));
}

@Override
public int getEnchantPowerBonus() {
	return 15;
}

}

 

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.