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.

Bubbly

Members
  • Joined

  • Last visited

Everything posted by Bubbly

  1. Bubbly replied to Bubbly's topic in Mods
    Update: I scrapped this project, I'm currently working on a new mod called Crimson Matter! (1.12.2)
  2. Bubbly posted a topic in Modder Support
    So I'm working on my mod and have a block called Fairysteel Block. I'm currently testing it, and whenever I walk over it, it pushes me far away. I even made a path of them in the air and walked over them and got pushed many blocks away in a second. Anyone know how to fix this? Here's some code relating to it: public class BlockInit { public static final List<Block> BLOCKS = new ArrayList<Block>(); public static final Block FAIRYSTEEL_BLOCK = new FairysteelBlock("fairysteel_block", Material.IRON); public class FairysteelBlock extends Block implements IHasModel { public FairysteelBlock(String name, Material material) { super(material); setUnlocalizedName(name); setRegistryName(name); setCreativeTab(CrimsonMatter.CRIMSONMATTERTAB); setHardness(60); setResistance(75); setLightLevel(10); setLightOpacity(1); setDefaultSlipperiness(0f); setHarvestLevel("pickaxe", 7); setSoundType(SoundType.METAL); BlockInit.BLOCKS.add(this); ItemInit.ITEMS.add(new ItemBlock(this).setRegistryName(this.getRegistryName())); } @Override public boolean isFullBlock(IBlockState state) { return true; } @Override public boolean isFullCube(IBlockState state) { return true; } @Override public void registerModels() { CrimsonMatter.proxy.registerItemRenderer(Item.getItemFromBlock(this), 0, "inventory"); } } Code in .json files for the block: { "parent": "crimson:block/fairysteel_block" } { "parent": "block/cube_all", "textures": { "all": "crimson:blocks/fairysteel_block" } } { "variants": { "normal": { "model": "crimson:fairysteel_block" } } } I have one other block, but it doesn't have the same problem as this. Linked is a video demonstrating the problem. it happens even with one block, walking over or next to it. Anyone know how to fix this? Also, I plan on removing IHasModel soon, im following TurtyWurty's tutorial and that comes later in the series. https://streamable.com/rx2p3a
  3. Bubbly replied to Bubbly's topic in Mods
    It's called Bubbly's Magic SOup (as of now), and it's all about sorcery through soup. Use different ingredients to brew new soups (drinkable) and spills (throwable). So far, that's it. It's inspired by Witchery, but if you have nay ideas i'd love to try them out!
  4. So I'm new to making mods but am working on one right now, feel free to leave any suggestions, tips, or even videos! Any ideas? I'd love to hear them and maybe incorporate them (if I'm able to)! Version: 1.12.2 Not really Modder Support though, sorry...
  5. So I'm new to making mods but am working on one right now, feel free to leave any suggestions, tips, or even videos! Any ideas? I'd love to hear them and maybe incorporate them (if I'm able to)! Version: 1.12.2 Not really Modder Support though, sorry...

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.