Jump to content

starstorms21

Members
  • Posts

    24
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

starstorms21's Achievements

Tree Puncher

Tree Puncher (2/8)

0

Reputation

  1. And for the general update from 1.15? I have done: Changed the mc version in @Mod Changed 1.15.2 to 1.16.5 latest version in build.gradle Edited the mod.toml file to require the right minecraft version anything im missing?
  2. Ah i see, okay, so 1.16.5 then, how would i start the process of updating? Is there any way to quickly changing the mappings to the official names without having to run through my project to rename everything?
  3. Hello there, i started development of my mod a few months ago and have made considerable progress, making it a quite big project, but as 1.15.2 is starting to be outdated in terms of support, i wanted to update my project to 1.16.2 Where should i start? Are there any helpful guides/wiki pages/documentation i should have a look at before i do anything? I mainly use intellij IDEA to code and I have made a backup of my mod files on github, so im only looking for where to start.. Thanks for any help/advice.
  4. So i want to make a fancier glass block, where it has connected textures to apear clear. I have a all the variants of the texture i could ever need but im not sure how to go about actualy making the blockstate/model/whatever is needed to actually allow the textures to connect. Any help/tutorials/links would be great!
  5. im not quite sure how to modify nbt in 1.15.2 do you maybe have any sources/tutorials i could look at?
  6. I want to make a custom item that holds information, for example: A description An int from 1-100 to show the 'completion' of the item (that could change in game) ect In older versions (1.12.2) i would do this with stack nbt, but right now in 1.15.2 i have trouble finding alternatives. Anything i can do?
  7. if above doesnt work then switch the super and worldIn#setBlockState, as the super removes the block and then the worldIn#setBlockState places the stone down
  8. Try overriding OnBlockHarvested in your block class, then do something along the lines of: @Override public void onBlockHarvested(World worldIn, BlockPos pos, BlockState state, PlayerEntity player) { worldIn.setBlockState(pos, Blocks.STONE.getDefaultState()); super.onBlockHarvested(worldIn, pos, state, player); } replace stone with the block you want
  9. Fixed the error, completely my mistake! I had set the block to render as invisible in the block class, im dumb. Thanks for your help.
  10. My updated code: https://pastebin.com/eBWAryez and https://pastebin.com/3w13ad2u Problem still persists
  11. yah ofc i did, i tried them all but its invisible still
  12. tried: @Mod.EventBusSubscriber(modid = "jsaga",bus = Mod.EventBusSubscriber.Bus.MOD,value = Dist.CLIENT) @Mod.EventBusSubscriber(modid = "jsaga",bus = Mod.EventBusSubscriber.Bus.MOD) but still invisible block...what a head scratcher
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.