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.

iCollin

Members
  • Joined

  • Last visited

Everything posted by iCollin

  1. okay well how do i use the tags?
  2. package com.PE.projectevolution.core.init; import com.PE.projectevolution.ProjectEvolution; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.RotatedPillarBlock; import net.minecraft.world.level.block.SoundType; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.material.Material; import net.minecraft.world.level.material.MaterialColor; import net.minecraftforge.fmllegacy.RegistryObject; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; public class BlockInit { public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, ProjectEvolution.MOD_ID); public static final RegistryObject<Block> REDWOOD_LOG = BLOCKS.register("redwood_log", () -> new RotatedPillarBlock(BlockBehaviour.Properties.of(Material.WOOD, MaterialColor.WOOD).strength(2f, 3f) .sound(SoundType.WOOD).harvestTool(ToolType.AXE))); } i can't get the tool types to work in 1.17.1 and im not sure how to fix it
  3. okay thank you you have helped me so much
  4. ah okay thank, do you have any recommendations for any bots and how to use them?
  5. I don't know what I've done but I've messed up some how and I don't know how to fix it package com.igc.sbpm.core.init; import com.igc.sbpm.SBPM; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.SoundType; import net.minecraft.world.level.material.Material; import net.minecraft.world.level.material.MaterialColor; import net.minecraftforge.fmllegacy.RegistryObject; import net.minecraftforge.registries.DeferredRegister; import net.minecraftforge.registries.ForgeRegistries; public class BlockInit { public static final DeferredRegister<Block> BLOCKS = DeferredRegister.create(ForgeRegistries.BLOCKS, SBPM.MOD_ID); public static final RegistryObject<Block> SLATE_BLOCK = BLOCKS .register("slate_block", () -> new Block(AbstractBlock.Properties.create(Material.STONE, MaterialColor.STONE) .hardnessAndResistance(1.5f, 0.7f).harvestTool(ToolType.PICKAXE).harvestLevel(2) .sound(SoundType.STONE))); } it shows a error under AbstractBlock, Properties and Tool Type

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.