YouTube-Tutorials-19
From McJty Modding
Contents
Introduction
Everything you need to know about 1.19 modding with Forge.
Documentation
- The official Forge documentation. Very well written and good explanation on various subjects
- Very good Wiki with all kinds of Forge related info
Useful links
Warning
{{warning|1=The tutorial for 1.19 is not ready yet! On the GitHub you can currently find the work in progress port to 1.19. Most of the things are working
Porting
Various bits of information to help with porting
- new TranslatableComponent() -> Component.translatable()
- new TextComponent() -> Component.literal()
- player.sendMessage() -> player.sendSystemMessage()
- ForgeRegistries.STRUCTURE_FEATURES -> Lots of changes! More info later
- ChunkGenerator
- BiomeLoadingEvent missing -> More info later on how to change this
- Block Properties: noDrops() -> noLootTable()
- XXX.getRegistryName() -> ForgeRegistries.<type of XXX>.getKey(XXX)
- DataGeneration -> extra boolean with addProvider. Give generator.includeClient() for client side and generator.includeServer() for server side
- SlotItemHandler -> temporary initialize() override until fixed in Forge
- Add monster_spawn_block_light_limit and monster_spawn_light_level to dimension type
- 'configured_structure_feature' -> 'structure'. Some changes to json. More info later