├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ └── issue_report.md ├── renovate.json ├── stale.yml └── workflows │ ├── build-prs.yml │ ├── check-local-changes.yml │ ├── publish-jcc.yml │ ├── publish-prs.yml │ ├── release.yml │ └── test-prs.yml ├── .gitignore ├── .idea └── icon.svg ├── CREDITS.txt ├── LICENSE.txt ├── README-LICENSE.md ├── codeformat ├── HEADER.txt └── formatter-config.xml ├── coremods ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── neoforged │ │ └── neoforge │ │ └── coremods │ │ ├── CoremodUtils.java │ │ ├── MethodRedirector.java │ │ ├── NeoForgeCoreMod.java │ │ ├── ReplaceFieldComparisonWithInstanceOf.java │ │ ├── ReplaceFieldWithGetterAccess.java │ │ └── package-info.java │ └── resources │ ├── META-INF │ ├── MANIFEST.MF │ └── services │ │ └── net.neoforged.neoforgespi.transformation.ClassProcessorProvider │ └── net │ └── neoforged │ └── neoforge │ └── coremods │ └── finalize_spawn_targets.json ├── crowdin.yml ├── docs ├── CONTRIBUTING.md ├── NEOGAMETESTS.md ├── PORTING.md ├── README.md ├── SUPPORT.md ├── TESTFRAMEWORK.md └── assets │ ├── installer_profile_icon.png │ ├── neoforged.ico │ └── neoforged_logo.png ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── patches ├── com │ └── mojang │ │ ├── blaze3d │ │ ├── buffers │ │ │ └── GpuBuffer.java.patch │ │ ├── opengl │ │ │ ├── DirectStateAccess.java.patch │ │ │ ├── GlCommandEncoder.java.patch │ │ │ ├── GlConst.java.patch │ │ │ ├── GlDevice.java.patch │ │ │ ├── GlRenderPass.java.patch │ │ │ ├── GlStateManager.java.patch │ │ │ └── GlTexture.java.patch │ │ ├── pipeline │ │ │ ├── MainTarget.java.patch │ │ │ ├── RenderPipeline.java.patch │ │ │ ├── RenderTarget.java.patch │ │ │ └── TextureTarget.java.patch │ │ ├── platform │ │ │ ├── DepthTestFunction.java.patch │ │ │ ├── DestFactor.java.patch │ │ │ ├── SourceFactor.java.patch │ │ │ └── Window.java.patch │ │ ├── resource │ │ │ └── RenderTargetDescriptor.java.patch │ │ ├── shaders │ │ │ ├── ShaderType.java.patch │ │ │ └── UniformType.java.patch │ │ ├── systems │ │ │ ├── CommandEncoder.java.patch │ │ │ ├── RenderPass.java.patch │ │ │ └── RenderSystem.java.patch │ │ ├── textures │ │ │ ├── AddressMode.java.patch │ │ │ ├── GpuTexture.java.patch │ │ │ └── TextureFormat.java.patch │ │ └── vertex │ │ │ ├── VertexConsumer.java.patch │ │ │ ├── VertexFormat.java.patch │ │ │ └── VertexFormatElement.java.patch │ │ ├── math │ │ └── Transformation.java.patch │ │ └── realmsclient │ │ └── gui │ │ └── screens │ │ ├── RealmsGenericErrorScreen.java.patch │ │ └── RealmsNotificationsScreen.java.patch ├── mcp │ └── client │ │ └── Start.java.patch └── net │ └── minecraft │ ├── CrashReport.java.patch │ ├── CrashReportCategory.java.patch │ ├── FileUtil.java.patch │ ├── ReportType.java.patch │ ├── SharedConstants.java.patch │ ├── Util.java.patch │ ├── advancements │ ├── Advancement.java.patch │ └── AdvancementRewards.java.patch │ ├── client │ ├── Camera.java.patch │ ├── ClientBrandRetriever.java.patch │ ├── ClientRecipeBook.java.patch │ ├── GameNarrator.java.patch │ ├── KeyMapping.java.patch │ ├── KeyboardHandler.java.patch │ ├── Minecraft.java.patch │ ├── MouseHandler.java.patch │ ├── Options.java.patch │ ├── Screenshot.java.patch │ ├── ToggleKeyMapping.java.patch │ ├── color │ │ ├── block │ │ │ └── BlockColors.java.patch │ │ └── item │ │ │ └── ItemTintSources.java.patch │ ├── data │ │ ├── Main.java.patch │ │ └── models │ │ │ ├── BlockModelGenerators.java.patch │ │ │ ├── EquipmentAssetProvider.java.patch │ │ │ ├── ItemModelOutput.java.patch │ │ │ ├── ModelProvider.java.patch │ │ │ ├── MultiVariant.java.patch │ │ │ ├── blockstates │ │ │ ├── MultiVariantGenerator.java.patch │ │ │ └── PropertyDispatch.java.patch │ │ │ └── model │ │ │ ├── ModelLocationUtils.java.patch │ │ │ ├── ModelTemplate.java.patch │ │ │ ├── ModelTemplates.java.patch │ │ │ └── TextureMapping.java.patch │ ├── gui │ │ ├── Font.java.patch │ │ ├── Gui.java.patch │ │ ├── GuiGraphics.java.patch │ │ ├── components │ │ │ ├── AbstractButton.java.patch │ │ │ ├── AbstractWidget.java.patch │ │ │ ├── BossHealthOverlay.java.patch │ │ │ ├── Button.java.patch │ │ │ ├── EditBox.java.patch │ │ │ ├── debug │ │ │ │ ├── DebugScreenEntries.java.patch │ │ │ │ └── DebugScreenEntryList.java.patch │ │ │ └── toasts │ │ │ │ └── ToastManager.java.patch │ │ ├── font │ │ │ ├── AtlasGlyphProvider.java.patch │ │ │ ├── GlyphRenderTypes.java.patch │ │ │ ├── TextRenderable.java.patch │ │ │ ├── glyphs │ │ │ │ └── BakedSheetGlyph.java.patch │ │ │ └── providers │ │ │ │ └── GlyphProviderType.java.patch │ │ ├── render │ │ │ ├── GuiRenderer.java.patch │ │ │ └── pip │ │ │ │ └── PictureInPictureRenderer.java.patch │ │ └── screens │ │ │ ├── ChatScreen.java.patch │ │ │ ├── ConnectScreen.java.patch │ │ │ ├── LoadingOverlay.java.patch │ │ │ ├── MenuScreens.java.patch │ │ │ ├── PauseScreen.java.patch │ │ │ ├── Screen.java.patch │ │ │ ├── TitleScreen.java.patch │ │ │ ├── advancements │ │ │ ├── AdvancementTab.java.patch │ │ │ ├── AdvancementTabType.java.patch │ │ │ └── AdvancementsScreen.java.patch │ │ │ ├── debug │ │ │ └── DebugOptionsScreen.java.patch │ │ │ ├── inventory │ │ │ ├── AbstractContainerScreen.java.patch │ │ │ ├── CreativeModeInventoryScreen.java.patch │ │ │ ├── EffectsInInventory.java.patch │ │ │ ├── EnchantmentScreen.java.patch │ │ │ ├── HangingSignEditScreen.java.patch │ │ │ ├── InventoryScreen.java.patch │ │ │ ├── MerchantScreen.java.patch │ │ │ └── tooltip │ │ │ │ └── ClientTooltipComponent.java.patch │ │ │ ├── options │ │ │ └── controls │ │ │ │ ├── KeyBindsList.java.patch │ │ │ │ └── KeyBindsScreen.java.patch │ │ │ ├── packs │ │ │ └── PackSelectionModel.java.patch │ │ │ ├── recipebook │ │ │ ├── GhostSlots.java.patch │ │ │ └── RecipeBookComponent.java.patch │ │ │ └── worldselection │ │ │ ├── CreateWorldScreen.java.patch │ │ │ ├── PresetEditor.java.patch │ │ │ ├── WorldCreationContext.java.patch │ │ │ ├── WorldCreationUiState.java.patch │ │ │ ├── WorldOpenFlows.java.patch │ │ │ └── WorldSelectionList.java.patch │ ├── main │ │ └── Main.java.patch │ ├── model │ │ ├── HumanoidModel.java.patch │ │ ├── Model.java.patch │ │ └── geom │ │ │ ├── LayerDefinitions.java.patch │ │ │ └── ModelLayers.java.patch │ ├── multiplayer │ │ ├── AccountProfileKeyPairManager.java.patch │ │ ├── ClientChunkCache.java.patch │ │ ├── ClientCommonPacketListenerImpl.java.patch │ │ ├── ClientConfigurationPacketListenerImpl.java.patch │ │ ├── ClientLevel.java.patch │ │ ├── ClientPacketListener.java.patch │ │ ├── CommonListenerCookie.java.patch │ │ ├── KnownPacksManager.java.patch │ │ ├── MultiPlayerGameMode.java.patch │ │ ├── PlayerInfo.java.patch │ │ ├── ServerData.java.patch │ │ ├── SessionSearchTrees.java.patch │ │ ├── chat │ │ │ └── ChatListener.java.patch │ │ ├── prediction │ │ │ └── BlockStatePredictionHandler.java.patch │ │ └── resolver │ │ │ └── AddressCheck.java.patch │ ├── particle │ │ ├── FireworkParticles.java.patch │ │ ├── Particle.java.patch │ │ ├── ParticleEngine.java.patch │ │ ├── ParticleResources.java.patch │ │ ├── PortalParticle.java.patch │ │ ├── ReversePortalParticle.java.patch │ │ ├── TerrainParticle.java.patch │ │ └── VibrationSignalParticle.java.patch │ ├── player │ │ ├── AbstractClientPlayer.java.patch │ │ └── LocalPlayer.java.patch │ ├── renderer │ │ ├── DimensionSpecialEffects.java.patch │ │ ├── GameRenderer.java.patch │ │ ├── ItemBlockRenderTypes.java.patch │ │ ├── ItemInHandRenderer.java.patch │ │ ├── LevelEventHandler.java.patch │ │ ├── LevelRenderer.java.patch │ │ ├── LightTexture.java.patch │ │ ├── MapRenderer.java.patch │ │ ├── PanoramaRenderer.java.patch │ │ ├── RenderBuffers.java.patch │ │ ├── RenderPipelines.java.patch │ │ ├── ScreenEffectRenderer.java.patch │ │ ├── Sheets.java.patch │ │ ├── SpriteCoordinateExpander.java.patch │ │ ├── WeatherEffectRenderer.java.patch │ │ ├── block │ │ │ ├── BlockModelShaper.java.patch │ │ │ ├── BlockRenderDispatcher.java.patch │ │ │ ├── LiquidBlockRenderer.java.patch │ │ │ ├── ModelBlockRenderer.java.patch │ │ │ └── model │ │ │ │ ├── BakedQuad.java.patch │ │ │ │ ├── BlockElement.java.patch │ │ │ │ ├── BlockElementFace.java.patch │ │ │ │ ├── BlockModel.java.patch │ │ │ │ ├── BlockModelDefinition.java.patch │ │ │ │ ├── BlockModelPart.java.patch │ │ │ │ ├── BlockStateModel.java.patch │ │ │ │ ├── FaceBakery.java.patch │ │ │ │ ├── ItemModelGenerator.java.patch │ │ │ │ ├── ItemTransform.java.patch │ │ │ │ ├── ItemTransforms.java.patch │ │ │ │ ├── SimpleModelWrapper.java.patch │ │ │ │ ├── SimpleUnbakedGeometry.java.patch │ │ │ │ ├── SingleVariant.java.patch │ │ │ │ └── multipart │ │ │ │ └── MultiPartModel.java.patch │ │ ├── blockentity │ │ │ ├── AbstractSignRenderer.java.patch │ │ │ ├── BannerRenderer.java.patch │ │ │ ├── BeaconRenderer.java.patch │ │ │ ├── BlockEntityRenderDispatcher.java.patch │ │ │ ├── BlockEntityRenderers.java.patch │ │ │ ├── BlockEntityWithBoundingBoxRenderer.java.patch │ │ │ ├── BrushableBlockRenderer.java.patch │ │ │ ├── ChestRenderer.java.patch │ │ │ ├── ConduitRenderer.java.patch │ │ │ ├── CopperGolemStatueBlockRenderer.java.patch │ │ │ ├── DecoratedPotRenderer.java.patch │ │ │ ├── EnchantTableRenderer.java.patch │ │ │ ├── LecternRenderer.java.patch │ │ │ ├── PistonHeadRenderer.java.patch │ │ │ ├── ShulkerBoxRenderer.java.patch │ │ │ ├── SkullBlockRenderer.java.patch │ │ │ ├── SpawnerRenderer.java.patch │ │ │ ├── TheEndGatewayRenderer.java.patch │ │ │ ├── TrialSpawnerRenderer.java.patch │ │ │ └── state │ │ │ │ └── ChestRenderState.java.patch │ │ ├── chunk │ │ │ ├── RenderRegionCache.java.patch │ │ │ ├── RenderSectionRegion.java.patch │ │ │ ├── SectionCompiler.java.patch │ │ │ ├── SectionCopy.java.patch │ │ │ └── SectionRenderDispatcher.java.patch │ │ ├── culling │ │ │ └── Frustum.java.patch │ │ ├── entity │ │ │ ├── EntityRenderDispatcher.java.patch │ │ │ ├── EntityRenderer.java.patch │ │ │ ├── FishingHookRenderer.java.patch │ │ │ ├── HumanoidMobRenderer.java.patch │ │ │ ├── ItemEntityRenderer.java.patch │ │ │ ├── ItemFrameRenderer.java.patch │ │ │ ├── ItemRenderer.java.patch │ │ │ ├── LivingEntityRenderer.java.patch │ │ │ ├── layers │ │ │ │ └── EquipmentLayerRenderer.java.patch │ │ │ ├── player │ │ │ │ └── AvatarRenderer.java.patch │ │ │ └── state │ │ │ │ ├── EntityRenderState.java.patch │ │ │ │ ├── ItemClusterRenderState.java.patch │ │ │ │ └── ItemEntityRenderState.java.patch │ │ ├── feature │ │ │ └── BlockFeatureRenderer.java.patch │ │ ├── fog │ │ │ └── FogRenderer.java.patch │ │ ├── item │ │ │ ├── BlockModelWrapper.java.patch │ │ │ ├── ItemModel.java.patch │ │ │ ├── ItemModels.java.patch │ │ │ └── properties │ │ │ │ ├── conditional │ │ │ │ └── ConditionalItemModelProperties.java.patch │ │ │ │ ├── numeric │ │ │ │ └── RangeSelectItemModelProperties.java.patch │ │ │ │ └── select │ │ │ │ └── SelectItemModelProperties.java.patch │ │ ├── special │ │ │ ├── SpecialModelRenderer.java.patch │ │ │ └── SpecialModelRenderers.java.patch │ │ ├── state │ │ │ ├── BlockOutlineRenderState.java.patch │ │ │ ├── LevelRenderState.java.patch │ │ │ └── MapRenderState.java.patch │ │ └── texture │ │ │ ├── MipmapGenerator.java.patch │ │ │ ├── SpriteContents.java.patch │ │ │ ├── SpriteLoader.java.patch │ │ │ ├── Stitcher.java.patch │ │ │ ├── TextureAtlas.java.patch │ │ │ ├── TextureAtlasSprite.java.patch │ │ │ └── atlas │ │ │ ├── SpriteResourceLoader.java.patch │ │ │ ├── SpriteSourceList.java.patch │ │ │ └── SpriteSources.java.patch │ ├── resources │ │ ├── SplashManager.java.patch │ │ ├── language │ │ │ ├── ClientLanguage.java.patch │ │ │ ├── I18n.java.patch │ │ │ └── LanguageManager.java.patch │ │ ├── model │ │ │ ├── AtlasManager.java.patch │ │ │ ├── EquipmentClientInfo.java.patch │ │ │ ├── ModelBakery.java.patch │ │ │ ├── ModelDiscovery.java.patch │ │ │ ├── ModelManager.java.patch │ │ │ ├── ResolvedModel.java.patch │ │ │ ├── UnbakedGeometry.java.patch │ │ │ ├── UnbakedModel.java.patch │ │ │ └── WeightedVariants.java.patch │ │ └── sounds │ │ │ └── SoundInstance.java.patch │ ├── server │ │ ├── IntegratedServer.java.patch │ │ ├── LanServerDetection.java.patch │ │ └── LanServerPinger.java.patch │ └── sounds │ │ ├── MusicManager.java.patch │ │ └── SoundEngine.java.patch │ ├── commands │ ├── Commands.java.patch │ ├── SharedSuggestionProvider.java.patch │ ├── arguments │ │ ├── EntityArgument.java.patch │ │ ├── MessageArgument.java.patch │ │ ├── ObjectiveArgument.java.patch │ │ ├── ResourceKeyArgument.java.patch │ │ ├── TeamArgument.java.patch │ │ ├── coordinates │ │ │ └── BlockPosArgument.java.patch │ │ └── selector │ │ │ ├── EntitySelector.java.patch │ │ │ └── EntitySelectorParser.java.patch │ └── synchronization │ │ └── ArgumentTypeInfos.java.patch │ ├── core │ ├── DefaultedMappedRegistry.java.patch │ ├── Holder.java.patch │ ├── HolderLookup.java.patch │ ├── HolderSet.java.patch │ ├── MappedRegistry.java.patch │ ├── NonNullList.java.patch │ ├── Registry.java.patch │ ├── RegistrySetBuilder.java.patch │ ├── component │ │ ├── DataComponentGetter.java.patch │ │ ├── DataComponentPatch.java.patch │ │ ├── PatchedDataComponentMap.java.patch │ │ └── predicates │ │ │ ├── AttributeModifiersPredicate.java.patch │ │ │ └── EnchantmentsPredicate.java.patch │ ├── dispenser │ │ ├── BoatDispenseItemBehavior.java.patch │ │ ├── DispenseItemBehavior.java.patch │ │ ├── EquipmentDispenseItemBehavior.java.patch │ │ ├── MinecartDispenseItemBehavior.java.patch │ │ └── ShearsDispenseItemBehavior.java.patch │ ├── particles │ │ ├── BlockParticleOption.java.patch │ │ └── ItemParticleOption.java.patch │ └── registries │ │ ├── BuiltInRegistries.java.patch │ │ └── Registries.java.patch │ ├── data │ ├── DataGenerator.java.patch │ ├── DataProvider.java.patch │ ├── HashCache.java.patch │ ├── Main.java.patch │ ├── advancements │ │ └── AdvancementProvider.java.patch │ ├── loot │ │ ├── BlockLootSubProvider.java.patch │ │ ├── EntityLootSubProvider.java.patch │ │ └── LootTableProvider.java.patch │ ├── recipes │ │ ├── RecipeOutput.java.patch │ │ ├── RecipeProvider.java.patch │ │ ├── ShapedRecipeBuilder.java.patch │ │ └── SimpleCookingRecipeBuilder.java.patch │ ├── registries │ │ ├── RegistriesDatapackGenerator.java.patch │ │ ├── RegistryPatchGenerator.java.patch │ │ └── VanillaRegistries.java.patch │ ├── tags │ │ ├── BannerPatternTagsProvider.java.patch │ │ ├── BiomeTagsProvider.java.patch │ │ ├── DamageTypeTagsProvider.java.patch │ │ ├── EnchantmentTagsProvider.java.patch │ │ ├── EntityTypeTagsProvider.java.patch │ │ ├── FlatLevelGeneratorPresetTagsProvider.java.patch │ │ ├── FluidTagsProvider.java.patch │ │ ├── GameEventTagsProvider.java.patch │ │ ├── InstrumentTagsProvider.java.patch │ │ ├── IntrinsicHolderTagsProvider.java.patch │ │ ├── KeyTagProvider.java.patch │ │ ├── PaintingVariantTagsProvider.java.patch │ │ ├── PoiTypeTagsProvider.java.patch │ │ ├── StructureTagsProvider.java.patch │ │ ├── TagAppender.java.patch │ │ ├── TagsProvider.java.patch │ │ ├── VanillaItemTagsProvider.java.patch │ │ └── WorldPresetTagsProvider.java.patch │ └── worldgen │ │ └── BootstrapContext.java.patch │ ├── gametest │ └── framework │ │ ├── GameTestMainUtil.java.patch │ │ └── GameTestServer.java.patch │ ├── locale │ └── Language.java.patch │ ├── nbt │ ├── CompoundTag.java.patch │ ├── ListTag.java.patch │ ├── NbtAccounter.java.patch │ ├── NbtIo.java.patch │ └── StringTag.java.patch │ ├── network │ ├── CompressionEncoder.java.patch │ ├── Connection.java.patch │ ├── ConnectionProtocol.java.patch │ ├── FriendlyByteBuf.java.patch │ ├── PacketBundleUnpacker.java.patch │ ├── PacketEncoder.java.patch │ ├── PacketProcessor.java.patch │ ├── RegistryFriendlyByteBuf.java.patch │ ├── chat │ │ ├── ClickEvent.java.patch │ │ ├── ComponentSerialization.java.patch │ │ ├── SignableCommand.java.patch │ │ └── contents │ │ │ └── TranslatableContents.java.patch │ ├── codec │ │ └── ByteBufCodecs.java.patch │ ├── protocol │ │ ├── BundlePacket.java.patch │ │ ├── BundlerInfo.java.patch │ │ ├── common │ │ │ ├── ClientboundCustomPayloadPacket.java.patch │ │ │ ├── ServerboundCustomPayloadPacket.java.patch │ │ │ └── custom │ │ │ │ └── CustomPacketPayload.java.patch │ │ ├── configuration │ │ │ ├── ConfigurationProtocols.java.patch │ │ │ └── ServerboundSelectKnownPacks.java.patch │ │ ├── game │ │ │ └── ClientboundRecipeBookSettingsPacket.java.patch │ │ └── status │ │ │ ├── ClientboundStatusResponsePacket.java.patch │ │ │ └── ServerStatus.java.patch │ └── syncher │ │ ├── EntityDataSerializers.java.patch │ │ └── SynchedEntityData.java.patch │ ├── resources │ ├── FileToIdConverter.java.patch │ ├── HolderSetCodec.java.patch │ ├── RegistryDataLoader.java.patch │ ├── RegistryOps.java.patch │ ├── ResourceKey.java.patch │ └── ResourceLocation.java.patch │ ├── server │ ├── Bootstrap.java.patch │ ├── Eula.java.patch │ ├── Main.java.patch │ ├── MinecraftServer.java.patch │ ├── PlayerAdvancements.java.patch │ ├── ReloadableServerRegistries.java.patch │ ├── ReloadableServerResources.java.patch │ ├── WorldLoader.java.patch │ ├── advancements │ │ └── AdvancementVisibilityEvaluator.java.patch │ ├── commands │ │ ├── DataPackCommand.java.patch │ │ ├── EnchantCommand.java.patch │ │ ├── ForceLoadCommand.java.patch │ │ ├── ReloadCommand.java.patch │ │ ├── SetSpawnCommand.java.patch │ │ ├── SpreadPlayersCommand.java.patch │ │ └── TeleportCommand.java.patch │ ├── dedicated │ │ ├── DedicatedServer.java.patch │ │ ├── DedicatedServerProperties.java.patch │ │ ├── ServerWatchdog.java.patch │ │ └── Settings.java.patch │ ├── gui │ │ └── MinecraftServerGui.java.patch │ ├── level │ │ ├── ChunkMap.java.patch │ │ ├── GenerationChunkHolder.java.patch │ │ ├── ServerChunkCache.java.patch │ │ ├── ServerEntity.java.patch │ │ ├── ServerLevel.java.patch │ │ ├── ServerPlayer.java.patch │ │ ├── ServerPlayerGameMode.java.patch │ │ ├── TicketType.java.patch │ │ └── WorldGenRegion.java.patch │ ├── network │ │ ├── CommonListenerCookie.java.patch │ │ ├── ConfigurationTask.java.patch │ │ ├── PlayerChunkSender.java.patch │ │ ├── ServerCommonPacketListenerImpl.java.patch │ │ ├── ServerConfigurationPacketListenerImpl.java.patch │ │ ├── ServerConnectionListener.java.patch │ │ ├── ServerGamePacketListenerImpl.java.patch │ │ ├── ServerStatusPacketListenerImpl.java.patch │ │ └── config │ │ │ ├── PrepareSpawnTask.java.patch │ │ │ └── SynchronizeRegistriesTask.java.patch │ ├── packs │ │ ├── AbstractPackResources.java.patch │ │ ├── OverlayMetadataSection.java.patch │ │ ├── PackType.java.patch │ │ ├── repository │ │ │ ├── BuiltInPackSource.java.patch │ │ │ ├── Pack.java.patch │ │ │ ├── PackRepository.java.patch │ │ │ └── ServerPacksSource.java.patch │ │ └── resources │ │ │ ├── MultiPackResourceManager.java.patch │ │ │ ├── ReloadableResourceManager.java.patch │ │ │ ├── SimpleJsonResourceReloadListener.java.patch │ │ │ └── SimplePreparableReloadListener.java.patch │ ├── players │ │ └── PlayerList.java.patch │ └── rcon │ │ ├── RconConsoleSource.java.patch │ │ └── thread │ │ └── RconClient.java.patch │ ├── stats │ ├── RecipeBookSettings.java.patch │ └── StatsCounter.java.patch │ ├── tags │ ├── BlockTags.java.patch │ ├── FluidTags.java.patch │ ├── ItemTags.java.patch │ ├── TagBuilder.java.patch │ ├── TagEntry.java.patch │ ├── TagFile.java.patch │ └── TagLoader.java.patch │ ├── util │ ├── SpawnUtil.java.patch │ ├── TriState.java.patch │ ├── context │ │ ├── ContextKeySet.java.patch │ │ └── ContextMap.java.patch │ ├── datafix │ │ ├── DataFixers.java.patch │ │ ├── fixes │ │ │ ├── MobEffectIdFix.java.patch │ │ │ └── StructuresBecomeConfiguredFix.java.patch │ │ └── schemas │ │ │ └── V2832.java.patch │ ├── random │ │ └── WeightedList.java.patch │ └── thread │ │ └── BlockableEventLoop.java.patch │ └── world │ ├── SimpleContainer.java.patch │ ├── damagesource │ ├── CombatTracker.java.patch │ ├── DamageEffects.java.patch │ ├── DamageScaling.java.patch │ ├── DamageSource.java.patch │ └── DeathMessageType.java.patch │ ├── effect │ ├── MobEffect.java.patch │ ├── MobEffectInstance.java.patch │ └── PoisonMobEffect.java.patch │ ├── entity │ ├── Entity.java.patch │ ├── EntityType.java.patch │ ├── ExperienceOrb.java.patch │ ├── Leashable.java.patch │ ├── LightningBolt.java.patch │ ├── LivingEntity.java.patch │ ├── Mob.java.patch │ ├── MobCategory.java.patch │ ├── Shearable.java.patch │ ├── SpawnPlacements.java.patch │ ├── TamableAnimal.java.patch │ ├── ai │ │ ├── attributes │ │ │ ├── Attribute.java.patch │ │ │ ├── AttributeSupplier.java.patch │ │ │ ├── Attributes.java.patch │ │ │ └── DefaultAttributes.java.patch │ │ ├── behavior │ │ │ ├── CrossbowAttack.java.patch │ │ │ ├── GiveGiftToHero.java.patch │ │ │ ├── HarvestFarmland.java.patch │ │ │ ├── StartAttacking.java.patch │ │ │ ├── Swim.java.patch │ │ │ ├── VillagerMakeLove.java.patch │ │ │ └── WorkAtComposter.java.patch │ │ ├── goal │ │ │ ├── BreakDoorGoal.java.patch │ │ │ ├── EatBlockGoal.java.patch │ │ │ ├── FloatGoal.java.patch │ │ │ ├── RangedBowAttackGoal.java.patch │ │ │ ├── RangedCrossbowAttackGoal.java.patch │ │ │ ├── RemoveBlockGoal.java.patch │ │ │ └── RunAroundLikeCrazyGoal.java.patch │ │ ├── navigation │ │ │ ├── PathNavigation.java.patch │ │ │ └── WallClimberNavigation.java.patch │ │ ├── sensing │ │ │ └── VillagerHostilesSensor.java.patch │ │ └── village │ │ │ ├── VillageSiege.java.patch │ │ │ └── poi │ │ │ ├── PoiType.java.patch │ │ │ └── PoiTypes.java.patch │ ├── animal │ │ ├── Animal.java.patch │ │ ├── Bee.java.patch │ │ ├── Cat.java.patch │ │ ├── Fox.java.patch │ │ ├── MushroomCow.java.patch │ │ ├── Ocelot.java.patch │ │ ├── Parrot.java.patch │ │ ├── Pig.java.patch │ │ ├── Rabbit.java.patch │ │ ├── SnowGolem.java.patch │ │ ├── allay │ │ │ └── Allay.java.patch │ │ ├── armadillo │ │ │ └── Armadillo.java.patch │ │ ├── camel │ │ │ └── Camel.java.patch │ │ ├── frog │ │ │ └── Tadpole.java.patch │ │ ├── horse │ │ │ ├── AbstractHorse.java.patch │ │ │ └── SkeletonTrapGoal.java.patch │ │ ├── sheep │ │ │ └── Sheep.java.patch │ │ ├── sniffer │ │ │ └── Sniffer.java.patch │ │ └── wolf │ │ │ └── Wolf.java.patch │ ├── boss │ │ ├── EnderDragonPart.java.patch │ │ ├── enderdragon │ │ │ └── EnderDragon.java.patch │ │ └── wither │ │ │ └── WitherBoss.java.patch │ ├── decoration │ │ ├── HangingEntity.java.patch │ │ ├── ItemFrame.java.patch │ │ └── LeashFenceKnotEntity.java.patch │ ├── item │ │ ├── FallingBlockEntity.java.patch │ │ └── ItemEntity.java.patch │ ├── monster │ │ ├── AbstractSkeleton.java.patch │ │ ├── Bogged.java.patch │ │ ├── CrossbowAttackMob.java.patch │ │ ├── EnderMan.java.patch │ │ ├── Evoker.java.patch │ │ ├── Husk.java.patch │ │ ├── Illusioner.java.patch │ │ ├── MagmaCube.java.patch │ │ ├── Monster.java.patch │ │ ├── Pillager.java.patch │ │ ├── Ravager.java.patch │ │ ├── Shulker.java.patch │ │ ├── Silverfish.java.patch │ │ ├── Skeleton.java.patch │ │ ├── Slime.java.patch │ │ ├── Zombie.java.patch │ │ ├── ZombieVillager.java.patch │ │ ├── creaking │ │ │ └── Creaking.java.patch │ │ ├── hoglin │ │ │ └── Hoglin.java.patch │ │ └── piglin │ │ │ ├── AbstractPiglin.java.patch │ │ │ ├── Piglin.java.patch │ │ │ └── PiglinAi.java.patch │ ├── npc │ │ ├── AbstractVillager.java.patch │ │ ├── CatSpawner.java.patch │ │ ├── Villager.java.patch │ │ ├── VillagerTrades.java.patch │ │ └── VillagerType.java.patch │ ├── player │ │ ├── Abilities.java.patch │ │ ├── Inventory.java.patch │ │ └── Player.java.patch │ ├── projectile │ │ ├── AbstractArrow.java.patch │ │ ├── AbstractHurtingProjectile.java.patch │ │ ├── FireworkRocketEntity.java.patch │ │ ├── FishingHook.java.patch │ │ ├── LargeFireball.java.patch │ │ ├── LlamaSpit.java.patch │ │ ├── Projectile.java.patch │ │ ├── ProjectileUtil.java.patch │ │ ├── ShulkerBullet.java.patch │ │ ├── SmallFireball.java.patch │ │ ├── ThrowableProjectile.java.patch │ │ ├── ThrownEnderpearl.java.patch │ │ └── WitherSkull.java.patch │ ├── raid │ │ └── Raid.java.patch │ └── vehicle │ │ ├── AbstractBoat.java.patch │ │ ├── AbstractMinecart.java.patch │ │ ├── AbstractMinecartContainer.java.patch │ │ ├── ContainerEntity.java.patch │ │ ├── Minecart.java.patch │ │ ├── MinecartCommandBlock.java.patch │ │ ├── MinecartFurnace.java.patch │ │ ├── MinecartSpawner.java.patch │ │ ├── NewMinecartBehavior.java.patch │ │ └── OldMinecartBehavior.java.patch │ ├── flag │ ├── FeatureFlag.java.patch │ ├── FeatureFlagRegistry.java.patch │ ├── FeatureFlagSet.java.patch │ └── FeatureFlags.java.patch │ ├── inventory │ ├── AbstractContainerMenu.java.patch │ ├── AbstractFurnaceMenu.java.patch │ ├── AnvilMenu.java.patch │ ├── ArmorSlot.java.patch │ ├── BeaconMenu.java.patch │ ├── BrewingStandMenu.java.patch │ ├── EnchantmentMenu.java.patch │ ├── FurnaceResultSlot.java.patch │ ├── GrindstoneMenu.java.patch │ ├── MenuType.java.patch │ ├── RecipeBookType.java.patch │ ├── ResultSlot.java.patch │ ├── ShulkerBoxSlot.java.patch │ └── Slot.java.patch │ ├── item │ ├── ArrowItem.java.patch │ ├── AxeItem.java.patch │ ├── BlockItem.java.patch │ ├── BoneMealItem.java.patch │ ├── BowItem.java.patch │ ├── BrushItem.java.patch │ ├── BucketItem.java.patch │ ├── BundleItem.java.patch │ ├── CreativeModeTab.java.patch │ ├── CrossbowItem.java.patch │ ├── DispensibleContainerItem.java.patch │ ├── DyeColor.java.patch │ ├── FireChargeItem.java.patch │ ├── FishingRodItem.java.patch │ ├── FlintAndSteelItem.java.patch │ ├── HoeItem.java.patch │ ├── HoneycombItem.java.patch │ ├── Item.java.patch │ ├── ItemDisplayContext.java.patch │ ├── ItemStack.java.patch │ ├── ItemUseAnimation.java.patch │ ├── Items.java.patch │ ├── MapItem.java.patch │ ├── MinecartItem.java.patch │ ├── ProjectileWeaponItem.java.patch │ ├── Rarity.java.patch │ ├── ShearsItem.java.patch │ ├── ShovelItem.java.patch │ ├── SpawnEggItem.java.patch │ ├── SpyglassItem.java.patch │ ├── TooltipFlag.java.patch │ ├── TridentItem.java.patch │ ├── alchemy │ │ ├── PotionBrewing.java.patch │ │ └── PotionContents.java.patch │ ├── component │ │ ├── BlocksAttacks.java.patch │ │ ├── BundleContents.java.patch │ │ ├── CustomData.java.patch │ │ ├── FireworkExplosion.java.patch │ │ └── ItemContainerContents.java.patch │ ├── consume_effects │ │ └── TeleportRandomlyConsumeEffect.java.patch │ ├── crafting │ │ ├── AbstractCookingRecipe.java.patch │ │ ├── BannerDuplicateRecipe.java.patch │ │ ├── BookCloningRecipe.java.patch │ │ ├── CraftingRecipe.java.patch │ │ ├── Ingredient.java.patch │ │ ├── Recipe.java.patch │ │ ├── RecipeManager.java.patch │ │ ├── RecipeMap.java.patch │ │ ├── RecipeType.java.patch │ │ ├── RepairItemRecipe.java.patch │ │ ├── ShapedRecipePattern.java.patch │ │ └── ShapelessRecipe.java.patch │ └── enchantment │ │ ├── Enchantment.java.patch │ │ └── EnchantmentHelper.java.patch │ ├── level │ ├── BaseSpawner.java.patch │ ├── BlockGetter.java.patch │ ├── DataPackConfig.java.patch │ ├── ExplosionDamageCalculator.java.patch │ ├── Level.java.patch │ ├── LevelSettings.java.patch │ ├── NaturalSpawner.java.patch │ ├── ServerExplosion.java.patch │ ├── SignalGetter.java.patch │ ├── TicketStorage.java.patch │ ├── biome │ │ ├── Biome.java.patch │ │ ├── BiomeSpecialEffects.java.patch │ │ └── MobSpawnSettings.java.patch │ ├── block │ │ ├── AbstractCauldronBlock.java.patch │ │ ├── AttachedStemBlock.java.patch │ │ ├── BambooSaplingBlock.java.patch │ │ ├── BambooStalkBlock.java.patch │ │ ├── BaseFireBlock.java.patch │ │ ├── BaseRailBlock.java.patch │ │ ├── BeehiveBlock.java.patch │ │ ├── BigDripleafBlock.java.patch │ │ ├── Block.java.patch │ │ ├── Blocks.java.patch │ │ ├── BubbleColumnBlock.java.patch │ │ ├── BucketPickup.java.patch │ │ ├── CactusBlock.java.patch │ │ ├── CampfireBlock.java.patch │ │ ├── CauldronBlock.java.patch │ │ ├── ChestBlock.java.patch │ │ ├── ChorusFlowerBlock.java.patch │ │ ├── ChorusPlantBlock.java.patch │ │ ├── CocoaBlock.java.patch │ │ ├── ComparatorBlock.java.patch │ │ ├── ComposterBlock.java.patch │ │ ├── ConcretePowderBlock.java.patch │ │ ├── CoralBlock.java.patch │ │ ├── CrafterBlock.java.patch │ │ ├── CropBlock.java.patch │ │ ├── DetectorRailBlock.java.patch │ │ ├── DiodeBlock.java.patch │ │ ├── DoorBlock.java.patch │ │ ├── DoublePlantBlock.java.patch │ │ ├── DropExperienceBlock.java.patch │ │ ├── DropperBlock.java.patch │ │ ├── EnchantingTableBlock.java.patch │ │ ├── FarmBlock.java.patch │ │ ├── FenceGateBlock.java.patch │ │ ├── FireBlock.java.patch │ │ ├── FlowerPotBlock.java.patch │ │ ├── FungusBlock.java.patch │ │ ├── GrowingPlantHeadBlock.java.patch │ │ ├── LiquidBlock.java.patch │ │ ├── MangrovePropaguleBlock.java.patch │ │ ├── MushroomBlock.java.patch │ │ ├── NetherWartBlock.java.patch │ │ ├── NoteBlock.java.patch │ │ ├── PitcherCropBlock.java.patch │ │ ├── PointedDripstoneBlock.java.patch │ │ ├── PowderSnowBlock.java.patch │ │ ├── PoweredRailBlock.java.patch │ │ ├── PumpkinBlock.java.patch │ │ ├── RailState.java.patch │ │ ├── RedStoneOreBlock.java.patch │ │ ├── RedStoneWireBlock.java.patch │ │ ├── SaplingBlock.java.patch │ │ ├── SculkCatalystBlock.java.patch │ │ ├── SculkSensorBlock.java.patch │ │ ├── SculkShriekerBlock.java.patch │ │ ├── SmallDripleafBlock.java.patch │ │ ├── SoundType.java.patch │ │ ├── SpawnerBlock.java.patch │ │ ├── SpongeBlock.java.patch │ │ ├── SpreadingSnowyDirtBlock.java.patch │ │ ├── StemBlock.java.patch │ │ ├── SugarCaneBlock.java.patch │ │ ├── SweetBerryBushBlock.java.patch │ │ ├── TntBlock.java.patch │ │ ├── TrapDoorBlock.java.patch │ │ ├── TripWireBlock.java.patch │ │ ├── TurtleEggBlock.java.patch │ │ ├── VegetationBlock.java.patch │ │ ├── VineBlock.java.patch │ │ ├── WeatheringCopper.java.patch │ │ ├── entity │ │ │ ├── AbstractFurnaceBlockEntity.java.patch │ │ │ ├── BaseContainerBlockEntity.java.patch │ │ │ ├── BeaconBlockEntity.java.patch │ │ │ ├── BlockEntity.java.patch │ │ │ ├── BlockEntityType.java.patch │ │ │ ├── BrewingStandBlockEntity.java.patch │ │ │ ├── ChestBlockEntity.java.patch │ │ │ ├── ChiseledBookShelfBlockEntity.java.patch │ │ │ ├── ConduitBlockEntity.java.patch │ │ │ ├── FuelValues.java.patch │ │ │ ├── HopperBlockEntity.java.patch │ │ │ ├── JukeboxBlockEntity.java.patch │ │ │ ├── ShulkerBoxBlockEntity.java.patch │ │ │ ├── SpawnerBlockEntity.java.patch │ │ │ ├── TheEndGatewayBlockEntity.java.patch │ │ │ └── trialspawner │ │ │ │ └── TrialSpawner.java.patch │ │ ├── grower │ │ │ └── TreeGrower.java.patch │ │ ├── piston │ │ │ ├── PistonBaseBlock.java.patch │ │ │ ├── PistonMovingBlockEntity.java.patch │ │ │ └── PistonStructureResolver.java.patch │ │ └── state │ │ │ └── BlockBehaviour.java.patch │ ├── chunk │ │ ├── ChunkAccess.java.patch │ │ ├── ChunkGenerator.java.patch │ │ ├── ImposterProtoChunk.java.patch │ │ ├── LevelChunk.java.patch │ │ ├── LevelChunkSection.java.patch │ │ ├── ProtoChunk.java.patch │ │ ├── status │ │ │ └── ChunkStatusTasks.java.patch │ │ └── storage │ │ │ ├── EntityStorage.java.patch │ │ │ ├── SectionStorage.java.patch │ │ │ └── SerializableChunkData.java.patch │ ├── dimension │ │ └── end │ │ │ └── EndDragonFight.java.patch │ ├── entity │ │ ├── PersistentEntitySectionManager.java.patch │ │ └── TransientEntitySectionManager.java.patch │ ├── gameevent │ │ └── vibrations │ │ │ └── VibrationSystem.java.patch │ ├── levelgen │ │ ├── Beardifier.java.patch │ │ ├── DebugLevelSource.java.patch │ │ ├── PhantomSpawner.java.patch │ │ ├── WorldDimensions.java.patch │ │ ├── feature │ │ │ ├── MonsterRoomFeature.java.patch │ │ │ ├── configurations │ │ │ │ └── TreeConfiguration.java.patch │ │ │ ├── treedecorators │ │ │ │ └── AlterGroundDecorator.java.patch │ │ │ └── trunkplacers │ │ │ │ └── TrunkPlacer.java.patch │ │ ├── placement │ │ │ └── EnvironmentScanPlacement.java.patch │ │ └── structure │ │ │ ├── Structure.java.patch │ │ │ ├── StructurePiece.java.patch │ │ │ ├── StructureStart.java.patch │ │ │ ├── pools │ │ │ └── SinglePoolElement.java.patch │ │ │ └── templatesystem │ │ │ ├── StructureProcessor.java.patch │ │ │ └── StructureTemplate.java.patch │ ├── lighting │ │ ├── BlockLightEngine.java.patch │ │ └── LightEngine.java.patch │ ├── material │ │ ├── FlowingFluid.java.patch │ │ ├── Fluid.java.patch │ │ ├── FluidState.java.patch │ │ └── LavaFluid.java.patch │ ├── pathfinder │ │ ├── PathfindingContext.java.patch │ │ └── WalkNodeEvaluator.java.patch │ ├── portal │ │ └── PortalShape.java.patch │ ├── saveddata │ │ └── SavedDataType.java.patch │ └── storage │ │ ├── DerivedLevelData.java.patch │ │ ├── DimensionDataStorage.java.patch │ │ ├── LevelStorageSource.java.patch │ │ ├── PlayerDataStorage.java.patch │ │ ├── PrimaryLevelData.java.patch │ │ ├── ServerLevelData.java.patch │ │ ├── TagValueInput.java.patch │ │ ├── TagValueOutput.java.patch │ │ └── loot │ │ ├── LootContext.java.patch │ │ ├── LootDataType.java.patch │ │ ├── LootPool.java.patch │ │ ├── LootTable.java.patch │ │ ├── functions │ │ ├── EnchantRandomlyFunction.java.patch │ │ └── SmeltItemFunction.java.patch │ │ └── parameters │ │ └── LootContextParamSets.java.patch │ └── phys │ ├── AABB.java.patch │ └── shapes │ └── MinecartCollisionContext.java.patch ├── projects ├── base │ ├── .gitignore │ └── build.gradle └── neoforge │ ├── .gitignore │ └── build.gradle ├── rejects_25w34b └── net │ └── minecraft │ └── client │ └── gui │ └── components │ └── DebugScreenOverlay.java.patch.rej ├── server_files ├── args.txt ├── run.bat ├── run.sh └── user_jvm_args.txt ├── settings.gradle ├── src ├── client │ └── java │ │ └── net │ │ └── neoforged │ │ └── neoforge │ │ └── client │ │ ├── BlockEntityRenderBoundsDebugRenderer.java │ │ ├── ClientCommandHandler.java │ │ ├── ClientCommandSourceStack.java │ │ ├── ClientHooks.java │ │ ├── ClientLifecycleHooks.java │ │ ├── ClientNeoForgeMod.java │ │ ├── ClientTooltipFlag.java │ │ ├── ColorResolverManager.java │ │ ├── CreativeModeTabSearchRegistry.java │ │ ├── CustomBlockOutlineRenderer.java │ │ ├── DimensionSpecialEffectsManager.java │ │ ├── DimensionTransitionScreenManager.java │ │ ├── EntitySpectatorShaderManager.java │ │ ├── ExtendedServerListData.java │ │ ├── FireworkShapeFactoryRegistry.java │ │ ├── IArmPoseTransformer.java │ │ ├── IItemDecorator.java │ │ ├── IRenderableSection.java │ │ ├── ItemDecoratorHandler.java │ │ ├── NamedRenderTypeManager.java │ │ ├── NeoForgeRenderPipelines.java │ │ ├── NeoForgeRenderTypes.java │ │ ├── PresetEditorManager.java │ │ ├── RecipeBookManager.java │ │ ├── RenderTypeGroup.java │ │ ├── RenderTypeHelper.java │ │ ├── StencilManager.java │ │ ├── TagConventionLogWarningClient.java │ │ ├── blaze3d │ │ ├── GpuDeviceFeatures.java │ │ ├── GpuDeviceProperties.java │ │ ├── opengl │ │ │ ├── DefaultGlDeviceFeatures.java │ │ │ ├── DefaultGlDeviceProperties.java │ │ │ ├── ImmutableGlDeviceFeatures.java │ │ │ ├── ImmutableGlDeviceProperties.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ └── validation │ │ │ ├── GpuDeviceUsageValidator.java │ │ │ ├── ValidationCommandEncoder.java │ │ │ ├── ValidationGpuDevice.java │ │ │ ├── ValidationGpuTexture.java │ │ │ ├── ValidationGpuTextureView.java │ │ │ ├── ValidationRenderPass.java │ │ │ └── package-info.java │ │ ├── color │ │ └── item │ │ │ ├── FluidContentsTint.java │ │ │ └── package-info.java │ │ ├── command │ │ ├── ClientConfigCommand.java │ │ └── package-info.java │ │ ├── config │ │ ├── NeoForgeClientConfig.java │ │ └── package-info.java │ │ ├── data │ │ ├── ParticleDescriptionProvider.java │ │ ├── SpriteSourceProvider.java │ │ ├── internal │ │ │ ├── NeoForgeSpriteSourceProvider.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── entity │ │ └── animation │ │ │ ├── AnimationKeyframeTarget.java │ │ │ ├── AnimationTarget.java │ │ │ ├── json │ │ │ ├── AnimationHolder.java │ │ │ ├── AnimationLoader.java │ │ │ ├── AnimationParser.java │ │ │ ├── AnimationTypeManager.java │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── event │ │ ├── AddClientReloadListenersEvent.java │ │ ├── AddSectionGeometryEvent.java │ │ ├── CalculateDetachedCameraDistanceEvent.java │ │ ├── CalculatePlayerTurnEvent.java │ │ ├── ClientChatEvent.java │ │ ├── ClientChatReceivedEvent.java │ │ ├── ClientPauseChangeEvent.java │ │ ├── ClientPlayerChangeGameTypeEvent.java │ │ ├── ClientPlayerNetworkEvent.java │ │ ├── ClientResourceLoadFinishedEvent.java │ │ ├── ClientTickEvent.java │ │ ├── ComputeFovModifierEvent.java │ │ ├── ConfigureGpuDeviceEvent.java │ │ ├── ConfigureMainRenderTargetEvent.java │ │ ├── ContainerScreenEvent.java │ │ ├── CustomizeGuiOverlayEvent.java │ │ ├── EntityRenderersEvent.java │ │ ├── ExtractBlockOutlineRenderStateEvent.java │ │ ├── ExtractLevelRenderStateEvent.java │ │ ├── FrameGraphSetupEvent.java │ │ ├── GatherEffectScreenTooltipsEvent.java │ │ ├── InitializeClientRegistriesEvent.java │ │ ├── InputEvent.java │ │ ├── ModelEvent.java │ │ ├── MovementInputUpdateEvent.java │ │ ├── PlayerHeartTypeEvent.java │ │ ├── RecipesReceivedEvent.java │ │ ├── RegisterBlockStateModels.java │ │ ├── RegisterClientCommandsEvent.java │ │ ├── RegisterClientTooltipComponentFactoriesEvent.java │ │ ├── RegisterColorHandlersEvent.java │ │ ├── RegisterConditionalItemModelPropertyEvent.java │ │ ├── RegisterDebugEntriesEvent.java │ │ ├── RegisterDimensionSpecialEffectsEvent.java │ │ ├── RegisterDimensionTransitionScreenEvent.java │ │ ├── RegisterEntitySpectatorShadersEvent.java │ │ ├── RegisterGuiLayersEvent.java │ │ ├── RegisterItemDecorationsEvent.java │ │ ├── RegisterItemModelsEvent.java │ │ ├── RegisterJsonAnimationTypesEvent.java │ │ ├── RegisterKeyMappingsEvent.java │ │ ├── RegisterMenuScreensEvent.java │ │ ├── RegisterNamedRenderTypesEvent.java │ │ ├── RegisterParticleGroupsEvent.java │ │ ├── RegisterParticleProvidersEvent.java │ │ ├── RegisterPictureInPictureRenderersEvent.java │ │ ├── RegisterPresetEditorsEvent.java │ │ ├── RegisterRangeSelectItemModelPropertyEvent.java │ │ ├── RegisterRecipeBookSearchCategoriesEvent.java │ │ ├── RegisterRenderBuffersEvent.java │ │ ├── RegisterRenderPipelinesEvent.java │ │ ├── RegisterSelectItemModelPropertyEvent.java │ │ ├── RegisterSpecialBlockModelRendererEvent.java │ │ ├── RegisterSpecialModelRendererEvent.java │ │ ├── RegisterSpriteSourcesEvent.java │ │ ├── RegisterTextureAtlasesEvent.java │ │ ├── RenderArmEvent.java │ │ ├── RenderBlockScreenEffectEvent.java │ │ ├── RenderFrameEvent.java │ │ ├── RenderGuiEvent.java │ │ ├── RenderGuiLayerEvent.java │ │ ├── RenderHandEvent.java │ │ ├── RenderItemInFrameEvent.java │ │ ├── RenderLevelStageEvent.java │ │ ├── RenderLivingEvent.java │ │ ├── RenderNameTagEvent.java │ │ ├── RenderPlayerEvent.java │ │ ├── RenderTooltipEvent.java │ │ ├── ScreenEvent.java │ │ ├── ScreenshotEvent.java │ │ ├── SelectMusicEvent.java │ │ ├── TextureAtlasStitchedEvent.java │ │ ├── ToastAddEvent.java │ │ ├── ViewportEvent.java │ │ ├── lifecycle │ │ │ ├── ClientLifecycleEvent.java │ │ │ ├── ClientStartedEvent.java │ │ │ ├── ClientStoppedEvent.java │ │ │ ├── ClientStoppingEvent.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ └── sound │ │ │ ├── PlaySoundEvent.java │ │ │ ├── PlaySoundSourceEvent.java │ │ │ ├── PlayStreamingSourceEvent.java │ │ │ ├── SoundEngineLoadEvent.java │ │ │ ├── SoundEvent.java │ │ │ └── package-info.java │ │ ├── extensions │ │ ├── BlockModelPartExtension.java │ │ ├── BlockStateModelExtension.java │ │ ├── IBlockEntityRendererExtension.java │ │ ├── IDimensionSpecialEffectsExtension.java │ │ ├── IFontExtension.java │ │ ├── IGuiGraphicsExtension.java │ │ ├── IKeyMappingExtension.java │ │ ├── IMinecraftExtension.java │ │ ├── IModelProviderExtension.java │ │ ├── IPoseStackExtension.java │ │ ├── IRenderStateExtension.java │ │ ├── ITexturedModelExtension.java │ │ ├── IVertexConsumerExtension.java │ │ ├── ModelBakerExtension.java │ │ ├── ModelStateExtension.java │ │ ├── QuadCollectionBuilderExtension.java │ │ ├── ResolvedModelExtension.java │ │ ├── SpriteSourceExtension.java │ │ ├── UnbakedGeometryExtension.java │ │ ├── UnbakedModelExtension.java │ │ ├── blaze3d │ │ │ ├── GpuDeviceExtension.java │ │ │ └── package-info.java │ │ ├── common │ │ │ ├── ClientExtensionsManager.java │ │ │ ├── IClientBlockExtensions.java │ │ │ ├── IClientFluidTypeExtensions.java │ │ │ ├── IClientItemExtensions.java │ │ │ ├── IClientMobEffectExtensions.java │ │ │ ├── RegisterClientExtensionsEvent.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── gui │ │ ├── ClientTooltipComponentManager.java │ │ ├── ConfigurationScreen.java │ │ ├── CreativeTabsScreenPage.java │ │ ├── GuiLayer.java │ │ ├── GuiLayerManager.java │ │ ├── IConfigScreenFactory.java │ │ ├── LoadingErrorScreen.java │ │ ├── ModListScreen.java │ │ ├── ModMismatchDisconnectedScreen.java │ │ ├── PictureInPictureRendererPool.java │ │ ├── PictureInPictureRendererRegistration.java │ │ ├── VanillaGuiLayers.java │ │ ├── map │ │ │ ├── IMapDecorationRenderer.java │ │ │ ├── MapDecorationRendererManager.java │ │ │ ├── RegisterMapDecorationRenderersEvent.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ └── widget │ │ │ ├── ExtendedButton.java │ │ │ ├── ExtendedSlider.java │ │ │ ├── ModListWidget.java │ │ │ ├── ModsButton.java │ │ │ ├── ScrollPanel.java │ │ │ ├── UnicodeGlyphButton.java │ │ │ └── package-info.java │ │ ├── internal │ │ ├── NeoForgeClientProxy.java │ │ ├── SelfTestClient.java │ │ └── package-info.java │ │ ├── loading │ │ ├── ClientModLoader.java │ │ ├── NeoForgeLoadingOverlay.java │ │ └── package-info.java │ │ ├── model │ │ ├── AbstractUnbakedModel.java │ │ ├── ComposedModelState.java │ │ ├── CompositeUnbakedGeometry.java │ │ ├── CompositeUnbakedModel.java │ │ ├── DelegateBlockStateModel.java │ │ ├── DelegateUnbakedModel.java │ │ ├── DynamicBlockStateModel.java │ │ ├── EmptyModel.java │ │ ├── ExtendedUnbakedGeometry.java │ │ ├── ExtraFaceData.java │ │ ├── IQuadTransformer.java │ │ ├── NeoForgeModelProperties.java │ │ ├── QuadTransformers.java │ │ ├── StandardModelParameters.java │ │ ├── UnbakedElementsHelper.java │ │ ├── UnbakedModelLoader.java │ │ ├── UnbakedModelParser.java │ │ ├── ao │ │ │ ├── AoCalculatedFace.java │ │ │ ├── AoFace.java │ │ │ ├── EnhancedAoRenderStorage.java │ │ │ ├── FullFaceCalculator.java │ │ │ └── package-info.java │ │ ├── block │ │ │ ├── BlockStateModelHooks.java │ │ │ ├── CompositeBlockModel.java │ │ │ ├── CustomBlockModelDefinition.java │ │ │ ├── CustomUnbakedBlockStateModel.java │ │ │ └── package-info.java │ │ ├── generators │ │ │ ├── blockstate │ │ │ │ ├── CompositeBlockStateModelBuilder.java │ │ │ │ ├── CustomBlockStateModelBuilder.java │ │ │ │ ├── UnbakedMutator.java │ │ │ │ └── package-info.java │ │ │ ├── loaders │ │ │ │ ├── CompositeModelBuilder.java │ │ │ │ ├── ObjModelBuilder.java │ │ │ │ └── package-info.java │ │ │ └── template │ │ │ │ ├── CustomLoaderBuilder.java │ │ │ │ ├── ElementBuilder.java │ │ │ │ ├── ExtendedModelTemplate.java │ │ │ │ ├── ExtendedModelTemplateBuilder.java │ │ │ │ ├── FaceBuilder.java │ │ │ │ ├── RootTransformsBuilder.java │ │ │ │ ├── RotationBuilder.java │ │ │ │ ├── TransformVecBuilder.java │ │ │ │ └── package-info.java │ │ ├── item │ │ │ ├── DynamicFluidContainerModel.java │ │ │ └── package-info.java │ │ ├── obj │ │ │ ├── ObjGeometry.java │ │ │ ├── ObjLoader.java │ │ │ ├── ObjMaterialLibrary.java │ │ │ ├── ObjModel.java │ │ │ ├── ObjTokenizer.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── pipeline │ │ │ ├── QuadBakingVertexConsumer.java │ │ │ ├── RemappingVertexPipeline.java │ │ │ ├── TransformingVertexPipeline.java │ │ │ ├── VertexConsumerWrapper.java │ │ │ └── package-info.java │ │ └── standalone │ │ │ ├── SimpleUnbakedStandaloneModel.java │ │ │ ├── StandaloneModelKey.java │ │ │ ├── StandaloneModelLoader.java │ │ │ ├── UnbakedStandaloneModel.java │ │ │ └── package-info.java │ │ ├── network │ │ ├── ClientPacketDistributor.java │ │ ├── ClientPayloadHandler.java │ │ ├── event │ │ │ ├── RegisterClientPayloadHandlersEvent.java │ │ │ └── package-info.java │ │ ├── handling │ │ │ ├── ClientPayloadContext.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ └── registration │ │ │ ├── ClientNetworkRegistry.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── pipeline │ │ ├── PipelineModifier.java │ │ ├── PipelineModifierStack.java │ │ ├── PipelineModifiers.java │ │ ├── RegisterPipelineModifiersEvent.java │ │ └── package-info.java │ │ ├── registries │ │ ├── ClientRegistryManager.java │ │ └── package-info.java │ │ ├── renderstate │ │ ├── BaseRenderState.java │ │ ├── MapDecorationRenderStateModifier.java │ │ ├── RegisterRenderStateModifiersEvent.java │ │ ├── RenderStateExtensions.java │ │ └── package-info.java │ │ ├── resources │ │ ├── NeoForgeSplashHooks.java │ │ ├── VanillaClientListeners.java │ │ └── package-info.java │ │ ├── settings │ │ ├── IKeyConflictContext.java │ │ ├── KeyConflictContext.java │ │ ├── KeyMappingLookup.java │ │ ├── KeyModifier.java │ │ └── package-info.java │ │ ├── stencil │ │ ├── StencilFunction.java │ │ ├── StencilOperation.java │ │ ├── StencilPerFaceTest.java │ │ ├── StencilTest.java │ │ └── package-info.java │ │ ├── textures │ │ ├── FluidSpriteCache.java │ │ ├── NamespacedDirectoryLister.java │ │ ├── SpriteContentsConstructor.java │ │ ├── UnitTextureAtlasSprite.java │ │ └── package-info.java │ │ └── util │ │ ├── DebuggingHelper.java │ │ └── package-info.java ├── generated │ └── resources │ │ ├── assets │ │ ├── c │ │ │ └── lang │ │ │ │ └── en_us.json │ │ └── minecraft │ │ │ ├── atlases │ │ │ └── blocks.json │ │ │ └── sounds.json │ │ ├── data │ │ ├── c │ │ │ └── tags │ │ │ │ ├── block │ │ │ │ ├── barrels.json │ │ │ │ ├── barrels │ │ │ │ │ └── wooden.json │ │ │ │ ├── bookshelves.json │ │ │ │ ├── budding_blocks.json │ │ │ │ ├── buds.json │ │ │ │ ├── chains.json │ │ │ │ ├── chests.json │ │ │ │ ├── chests │ │ │ │ │ ├── ender.json │ │ │ │ │ ├── trapped.json │ │ │ │ │ └── wooden.json │ │ │ │ ├── clusters.json │ │ │ │ ├── cobblestones.json │ │ │ │ ├── cobblestones │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── infested.json │ │ │ │ │ ├── mossy.json │ │ │ │ │ └── normal.json │ │ │ │ ├── concretes.json │ │ │ │ ├── dyed.json │ │ │ │ ├── dyed │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ ├── end_stones.json │ │ │ │ ├── fence_gates.json │ │ │ │ ├── fence_gates │ │ │ │ │ └── wooden.json │ │ │ │ ├── fences.json │ │ │ │ ├── fences │ │ │ │ │ ├── nether_brick.json │ │ │ │ │ └── wooden.json │ │ │ │ ├── flowers.json │ │ │ │ ├── flowers │ │ │ │ │ ├── small.json │ │ │ │ │ └── tall.json │ │ │ │ ├── glass_blocks.json │ │ │ │ ├── glass_blocks │ │ │ │ │ ├── cheap.json │ │ │ │ │ ├── colorless.json │ │ │ │ │ └── tinted.json │ │ │ │ ├── glass_panes.json │ │ │ │ ├── glass_panes │ │ │ │ │ └── colorless.json │ │ │ │ ├── glazed_terracottas.json │ │ │ │ ├── gravels.json │ │ │ │ ├── hidden_from_recipe_viewers.json │ │ │ │ ├── natural_logs.json │ │ │ │ ├── natural_logs │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── natural_woods.json │ │ │ │ ├── netherracks.json │ │ │ │ ├── obsidians.json │ │ │ │ ├── obsidians │ │ │ │ │ ├── crying.json │ │ │ │ │ └── normal.json │ │ │ │ ├── ore_bearing_ground │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ └── stone.json │ │ │ │ ├── ore_rates │ │ │ │ │ ├── dense.json │ │ │ │ │ ├── singular.json │ │ │ │ │ └── sparse.json │ │ │ │ ├── ores.json │ │ │ │ ├── ores │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lapis.json │ │ │ │ │ ├── netherite_scrap.json │ │ │ │ │ ├── quartz.json │ │ │ │ │ └── redstone.json │ │ │ │ ├── ores_in_ground │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ └── stone.json │ │ │ │ ├── player_workstations │ │ │ │ │ ├── crafting_tables.json │ │ │ │ │ └── furnaces.json │ │ │ │ ├── pumpkins.json │ │ │ │ ├── pumpkins │ │ │ │ │ ├── carved.json │ │ │ │ │ ├── jack_o_lanterns.json │ │ │ │ │ └── normal.json │ │ │ │ ├── relocation_not_supported.json │ │ │ │ ├── ropes.json │ │ │ │ ├── sands.json │ │ │ │ ├── sands │ │ │ │ │ ├── colorless.json │ │ │ │ │ └── red.json │ │ │ │ ├── sandstone │ │ │ │ │ ├── blocks.json │ │ │ │ │ ├── red_blocks.json │ │ │ │ │ ├── red_slabs.json │ │ │ │ │ ├── red_stairs.json │ │ │ │ │ ├── slabs.json │ │ │ │ │ ├── stairs.json │ │ │ │ │ ├── uncolored_blocks.json │ │ │ │ │ ├── uncolored_slabs.json │ │ │ │ │ └── uncolored_stairs.json │ │ │ │ ├── skulls.json │ │ │ │ ├── stones.json │ │ │ │ ├── storage_blocks.json │ │ │ │ ├── storage_blocks │ │ │ │ │ ├── bone_meal.json │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── dried_kelp.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lapis.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── raw_copper.json │ │ │ │ │ ├── raw_gold.json │ │ │ │ │ ├── raw_iron.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ ├── resin.json │ │ │ │ │ ├── slime.json │ │ │ │ │ └── wheat.json │ │ │ │ ├── stripped_logs.json │ │ │ │ ├── stripped_woods.json │ │ │ │ └── villager_job_sites.json │ │ │ │ ├── enchantment │ │ │ │ ├── entity_auxiliary_movement_enhancements.json │ │ │ │ ├── entity_defense_enhancements.json │ │ │ │ ├── entity_speed_enhancements.json │ │ │ │ ├── increase_block_drops.json │ │ │ │ ├── increase_entity_drops.json │ │ │ │ └── weapon_damage_enhancements.json │ │ │ │ ├── entity_type │ │ │ │ ├── boats.json │ │ │ │ ├── bosses.json │ │ │ │ ├── capturing_not_supported.json │ │ │ │ ├── minecarts.json │ │ │ │ └── teleporting_not_supported.json │ │ │ │ ├── fluid │ │ │ │ ├── beetroot_soup.json │ │ │ │ ├── experience.json │ │ │ │ ├── gaseous.json │ │ │ │ ├── hidden_from_recipe_viewers.json │ │ │ │ ├── honey.json │ │ │ │ ├── lava.json │ │ │ │ ├── milk.json │ │ │ │ ├── mushroom_stew.json │ │ │ │ ├── potion.json │ │ │ │ ├── rabbit_stew.json │ │ │ │ ├── suspicious_stew.json │ │ │ │ └── water.json │ │ │ │ ├── item │ │ │ │ ├── animal_foods.json │ │ │ │ ├── armors.json │ │ │ │ ├── barrels.json │ │ │ │ ├── barrels │ │ │ │ │ └── wooden.json │ │ │ │ ├── bones.json │ │ │ │ ├── bookshelves.json │ │ │ │ ├── bricks.json │ │ │ │ ├── bricks │ │ │ │ │ ├── nether.json │ │ │ │ │ ├── normal.json │ │ │ │ │ └── resin.json │ │ │ │ ├── buckets.json │ │ │ │ ├── buckets │ │ │ │ │ ├── empty.json │ │ │ │ │ ├── entity_water.json │ │ │ │ │ ├── lava.json │ │ │ │ │ ├── milk.json │ │ │ │ │ ├── powder_snow.json │ │ │ │ │ └── water.json │ │ │ │ ├── budding_blocks.json │ │ │ │ ├── buds.json │ │ │ │ ├── chains.json │ │ │ │ ├── chests.json │ │ │ │ ├── chests │ │ │ │ │ ├── ender.json │ │ │ │ │ ├── trapped.json │ │ │ │ │ └── wooden.json │ │ │ │ ├── clumps.json │ │ │ │ ├── clumps │ │ │ │ │ └── resin.json │ │ │ │ ├── clusters.json │ │ │ │ ├── cobblestones.json │ │ │ │ ├── cobblestones │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── infested.json │ │ │ │ │ ├── mossy.json │ │ │ │ │ └── normal.json │ │ │ │ ├── concrete_powders.json │ │ │ │ ├── concretes.json │ │ │ │ ├── crops.json │ │ │ │ ├── crops │ │ │ │ │ ├── beetroot.json │ │ │ │ │ ├── cactus.json │ │ │ │ │ ├── carrot.json │ │ │ │ │ ├── cocoa_bean.json │ │ │ │ │ ├── melon.json │ │ │ │ │ ├── nether_wart.json │ │ │ │ │ ├── potato.json │ │ │ │ │ ├── pumpkin.json │ │ │ │ │ ├── sugar_cane.json │ │ │ │ │ └── wheat.json │ │ │ │ ├── drinks.json │ │ │ │ ├── drinks │ │ │ │ │ ├── honey.json │ │ │ │ │ ├── juice.json │ │ │ │ │ ├── magic.json │ │ │ │ │ ├── milk.json │ │ │ │ │ ├── ominous.json │ │ │ │ │ ├── water.json │ │ │ │ │ └── watery.json │ │ │ │ ├── dusts.json │ │ │ │ ├── dusts │ │ │ │ │ ├── glowstone.json │ │ │ │ │ └── redstone.json │ │ │ │ ├── dyed.json │ │ │ │ ├── dyed │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ ├── dyes.json │ │ │ │ ├── dyes │ │ │ │ │ ├── black.json │ │ │ │ │ ├── blue.json │ │ │ │ │ ├── brown.json │ │ │ │ │ ├── cyan.json │ │ │ │ │ ├── gray.json │ │ │ │ │ ├── green.json │ │ │ │ │ ├── light_blue.json │ │ │ │ │ ├── light_gray.json │ │ │ │ │ ├── lime.json │ │ │ │ │ ├── magenta.json │ │ │ │ │ ├── orange.json │ │ │ │ │ ├── pink.json │ │ │ │ │ ├── purple.json │ │ │ │ │ ├── red.json │ │ │ │ │ ├── white.json │ │ │ │ │ └── yellow.json │ │ │ │ ├── eggs.json │ │ │ │ ├── enchantables.json │ │ │ │ ├── end_stones.json │ │ │ │ ├── ender_pearls.json │ │ │ │ ├── feathers.json │ │ │ │ ├── fence_gates.json │ │ │ │ ├── fence_gates │ │ │ │ │ └── wooden.json │ │ │ │ ├── fences.json │ │ │ │ ├── fences │ │ │ │ │ ├── nether_brick.json │ │ │ │ │ └── wooden.json │ │ │ │ ├── fertilizers.json │ │ │ │ ├── flowers.json │ │ │ │ ├── flowers │ │ │ │ │ ├── small.json │ │ │ │ │ └── tall.json │ │ │ │ ├── foods.json │ │ │ │ ├── foods │ │ │ │ │ ├── berry.json │ │ │ │ │ ├── bread.json │ │ │ │ │ ├── candy.json │ │ │ │ │ ├── cooked_fish.json │ │ │ │ │ ├── cooked_meat.json │ │ │ │ │ ├── cookie.json │ │ │ │ │ ├── edible_when_placed.json │ │ │ │ │ ├── food_poisoning.json │ │ │ │ │ ├── fruit.json │ │ │ │ │ ├── golden.json │ │ │ │ │ ├── pie.json │ │ │ │ │ ├── raw_fish.json │ │ │ │ │ ├── raw_meat.json │ │ │ │ │ ├── soup.json │ │ │ │ │ └── vegetable.json │ │ │ │ ├── gems.json │ │ │ │ ├── gems │ │ │ │ │ ├── amethyst.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── lapis.json │ │ │ │ │ ├── prismarine.json │ │ │ │ │ └── quartz.json │ │ │ │ ├── glass_blocks.json │ │ │ │ ├── glass_blocks │ │ │ │ │ ├── cheap.json │ │ │ │ │ ├── colorless.json │ │ │ │ │ └── tinted.json │ │ │ │ ├── glass_panes.json │ │ │ │ ├── glass_panes │ │ │ │ │ └── colorless.json │ │ │ │ ├── glazed_terracottas.json │ │ │ │ ├── gravels.json │ │ │ │ ├── gunpowders.json │ │ │ │ ├── hidden_from_recipe_viewers.json │ │ │ │ ├── ingots.json │ │ │ │ ├── ingots │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ └── netherite.json │ │ │ │ ├── leathers.json │ │ │ │ ├── mushrooms.json │ │ │ │ ├── music_discs.json │ │ │ │ ├── natural_logs.json │ │ │ │ ├── natural_logs │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── natural_woods.json │ │ │ │ ├── nether_stars.json │ │ │ │ ├── netherracks.json │ │ │ │ ├── nuggets.json │ │ │ │ ├── nuggets │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── gold.json │ │ │ │ │ └── iron.json │ │ │ │ ├── obsidians.json │ │ │ │ ├── obsidians │ │ │ │ │ ├── crying.json │ │ │ │ │ └── normal.json │ │ │ │ ├── ore_bearing_ground │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ └── stone.json │ │ │ │ ├── ore_rates │ │ │ │ │ ├── dense.json │ │ │ │ │ ├── singular.json │ │ │ │ │ └── sparse.json │ │ │ │ ├── ores.json │ │ │ │ ├── ores │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lapis.json │ │ │ │ │ ├── netherite_scrap.json │ │ │ │ │ ├── quartz.json │ │ │ │ │ └── redstone.json │ │ │ │ ├── ores_in_ground │ │ │ │ │ ├── deepslate.json │ │ │ │ │ ├── netherrack.json │ │ │ │ │ └── stone.json │ │ │ │ ├── player_workstations │ │ │ │ │ ├── crafting_tables.json │ │ │ │ │ └── furnaces.json │ │ │ │ ├── potions.json │ │ │ │ ├── potions │ │ │ │ │ └── bottle.json │ │ │ │ ├── pumpkins.json │ │ │ │ ├── pumpkins │ │ │ │ │ ├── carved.json │ │ │ │ │ ├── jack_o_lanterns.json │ │ │ │ │ └── normal.json │ │ │ │ ├── raw_materials.json │ │ │ │ ├── raw_materials │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── gold.json │ │ │ │ │ └── iron.json │ │ │ │ ├── rods.json │ │ │ │ ├── rods │ │ │ │ │ ├── blaze.json │ │ │ │ │ ├── breeze.json │ │ │ │ │ └── wooden.json │ │ │ │ ├── ropes.json │ │ │ │ ├── sands.json │ │ │ │ ├── sands │ │ │ │ │ ├── colorless.json │ │ │ │ │ └── red.json │ │ │ │ ├── sandstone │ │ │ │ │ ├── blocks.json │ │ │ │ │ ├── red_blocks.json │ │ │ │ │ ├── red_slabs.json │ │ │ │ │ ├── red_stairs.json │ │ │ │ │ ├── slabs.json │ │ │ │ │ ├── stairs.json │ │ │ │ │ ├── uncolored_blocks.json │ │ │ │ │ ├── uncolored_slabs.json │ │ │ │ │ └── uncolored_stairs.json │ │ │ │ ├── seeds.json │ │ │ │ ├── seeds │ │ │ │ │ ├── beetroot.json │ │ │ │ │ ├── melon.json │ │ │ │ │ ├── pitcher_plant.json │ │ │ │ │ ├── pumpkin.json │ │ │ │ │ ├── torchflower.json │ │ │ │ │ └── wheat.json │ │ │ │ ├── shulker_boxes.json │ │ │ │ ├── slime_balls.json │ │ │ │ ├── stones.json │ │ │ │ ├── storage_blocks.json │ │ │ │ ├── storage_blocks │ │ │ │ │ ├── bone_meal.json │ │ │ │ │ ├── coal.json │ │ │ │ │ ├── copper.json │ │ │ │ │ ├── diamond.json │ │ │ │ │ ├── dried_kelp.json │ │ │ │ │ ├── emerald.json │ │ │ │ │ ├── gold.json │ │ │ │ │ ├── iron.json │ │ │ │ │ ├── lapis.json │ │ │ │ │ ├── netherite.json │ │ │ │ │ ├── raw_copper.json │ │ │ │ │ ├── raw_gold.json │ │ │ │ │ ├── raw_iron.json │ │ │ │ │ ├── redstone.json │ │ │ │ │ ├── resin.json │ │ │ │ │ ├── slime.json │ │ │ │ │ └── wheat.json │ │ │ │ ├── strings.json │ │ │ │ ├── stripped_logs.json │ │ │ │ ├── stripped_woods.json │ │ │ │ ├── tools.json │ │ │ │ ├── tools │ │ │ │ │ ├── bow.json │ │ │ │ │ ├── brush.json │ │ │ │ │ ├── crossbow.json │ │ │ │ │ ├── fishing_rod.json │ │ │ │ │ ├── igniter.json │ │ │ │ │ ├── mace.json │ │ │ │ │ ├── melee_weapon.json │ │ │ │ │ ├── mining_tool.json │ │ │ │ │ ├── ranged_weapon.json │ │ │ │ │ ├── shear.json │ │ │ │ │ ├── shield.json │ │ │ │ │ ├── spear.json │ │ │ │ │ └── wrench.json │ │ │ │ └── villager_job_sites.json │ │ │ │ └── worldgen │ │ │ │ ├── biome │ │ │ │ ├── hidden_from_locator_selection.json │ │ │ │ ├── is_aquatic.json │ │ │ │ ├── is_aquatic_icy.json │ │ │ │ ├── is_badlands.json │ │ │ │ ├── is_beach.json │ │ │ │ ├── is_birch_forest.json │ │ │ │ ├── is_cave.json │ │ │ │ ├── is_cold.json │ │ │ │ ├── is_cold │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_dark_forest.json │ │ │ │ ├── is_dead.json │ │ │ │ ├── is_deep_ocean.json │ │ │ │ ├── is_dense_vegetation.json │ │ │ │ ├── is_dense_vegetation │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_desert.json │ │ │ │ ├── is_dry.json │ │ │ │ ├── is_dry │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_end.json │ │ │ │ ├── is_floral.json │ │ │ │ ├── is_flower_forest.json │ │ │ │ ├── is_forest.json │ │ │ │ ├── is_hill.json │ │ │ │ ├── is_hot.json │ │ │ │ ├── is_hot │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_icy.json │ │ │ │ ├── is_jungle.json │ │ │ │ ├── is_lush.json │ │ │ │ ├── is_magical.json │ │ │ │ ├── is_mountain.json │ │ │ │ ├── is_mountain │ │ │ │ │ ├── peak.json │ │ │ │ │ └── slope.json │ │ │ │ ├── is_mushroom.json │ │ │ │ ├── is_nether.json │ │ │ │ ├── is_nether_forest.json │ │ │ │ ├── is_ocean.json │ │ │ │ ├── is_old_growth.json │ │ │ │ ├── is_outer_end_island.json │ │ │ │ ├── is_overworld.json │ │ │ │ ├── is_plains.json │ │ │ │ ├── is_plateau.json │ │ │ │ ├── is_rare.json │ │ │ │ ├── is_river.json │ │ │ │ ├── is_sandy.json │ │ │ │ ├── is_savanna.json │ │ │ │ ├── is_shallow_ocean.json │ │ │ │ ├── is_snowy.json │ │ │ │ ├── is_snowy_plains.json │ │ │ │ ├── is_sparse_vegetation.json │ │ │ │ ├── is_sparse_vegetation │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_spooky.json │ │ │ │ ├── is_stony_shores.json │ │ │ │ ├── is_swamp.json │ │ │ │ ├── is_taiga.json │ │ │ │ ├── is_temperate.json │ │ │ │ ├── is_temperate │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_tree │ │ │ │ │ ├── coniferous.json │ │ │ │ │ ├── deciduous.json │ │ │ │ │ ├── jungle.json │ │ │ │ │ └── savanna.json │ │ │ │ ├── is_underground.json │ │ │ │ ├── is_void.json │ │ │ │ ├── is_wasteland.json │ │ │ │ ├── is_wet.json │ │ │ │ ├── is_wet │ │ │ │ │ ├── end.json │ │ │ │ │ ├── nether.json │ │ │ │ │ └── overworld.json │ │ │ │ ├── is_windswept.json │ │ │ │ ├── no_default_monsters.json │ │ │ │ ├── primary_wood_type.json │ │ │ │ └── primary_wood_type │ │ │ │ │ ├── acacia.json │ │ │ │ │ ├── bamboo.json │ │ │ │ │ ├── birch.json │ │ │ │ │ ├── cherry.json │ │ │ │ │ ├── crimson.json │ │ │ │ │ ├── dark_oak.json │ │ │ │ │ ├── jungle.json │ │ │ │ │ ├── mangrove.json │ │ │ │ │ ├── oak.json │ │ │ │ │ ├── pale_oak.json │ │ │ │ │ ├── spruce.json │ │ │ │ │ └── warped.json │ │ │ │ └── structure │ │ │ │ ├── hidden_from_displayers.json │ │ │ │ └── hidden_from_locator_selection.json │ │ ├── minecraft │ │ │ ├── advancement │ │ │ │ ├── adventure │ │ │ │ │ ├── lighten_up.json │ │ │ │ │ ├── throw_trident.json │ │ │ │ │ └── walk_on_powder_snow_with_leather_boots.json │ │ │ │ ├── husbandry │ │ │ │ │ └── wax_off.json │ │ │ │ └── nether │ │ │ │ │ └── distract_piglin.json │ │ │ ├── loot_table │ │ │ │ └── blocks │ │ │ │ │ ├── acacia_leaves.json │ │ │ │ │ ├── azalea_leaves.json │ │ │ │ │ ├── birch_leaves.json │ │ │ │ │ ├── bush.json │ │ │ │ │ ├── cherry_leaves.json │ │ │ │ │ ├── cobweb.json │ │ │ │ │ ├── dark_oak_leaves.json │ │ │ │ │ ├── dead_bush.json │ │ │ │ │ ├── fern.json │ │ │ │ │ ├── flowering_azalea_leaves.json │ │ │ │ │ ├── glow_lichen.json │ │ │ │ │ ├── hanging_roots.json │ │ │ │ │ ├── jungle_leaves.json │ │ │ │ │ ├── large_fern.json │ │ │ │ │ ├── mangrove_leaves.json │ │ │ │ │ ├── nether_sprouts.json │ │ │ │ │ ├── oak_leaves.json │ │ │ │ │ ├── pale_hanging_moss.json │ │ │ │ │ ├── pale_oak_leaves.json │ │ │ │ │ ├── seagrass.json │ │ │ │ │ ├── short_dry_grass.json │ │ │ │ │ ├── short_grass.json │ │ │ │ │ ├── small_dripleaf.json │ │ │ │ │ ├── spruce_leaves.json │ │ │ │ │ ├── tall_dry_grass.json │ │ │ │ │ ├── tall_grass.json │ │ │ │ │ ├── tall_seagrass.json │ │ │ │ │ ├── twisting_vines.json │ │ │ │ │ ├── twisting_vines_plant.json │ │ │ │ │ ├── vine.json │ │ │ │ │ ├── weeping_vines.json │ │ │ │ │ └── weeping_vines_plant.json │ │ │ ├── recipe │ │ │ │ ├── acacia_chest_boat.json │ │ │ │ ├── acacia_fence.json │ │ │ │ ├── acacia_fence_gate.json │ │ │ │ ├── acacia_sign.json │ │ │ │ ├── activator_rail.json │ │ │ │ ├── andesite.json │ │ │ │ ├── anvil.json │ │ │ │ ├── armor_stand.json │ │ │ │ ├── arrow.json │ │ │ │ ├── bamboo_chest_raft.json │ │ │ │ ├── bamboo_fence.json │ │ │ │ ├── bamboo_fence_gate.json │ │ │ │ ├── bamboo_sign.json │ │ │ │ ├── birch_chest_boat.json │ │ │ │ ├── birch_fence.json │ │ │ │ ├── birch_fence_gate.json │ │ │ │ ├── birch_sign.json │ │ │ │ ├── black_banner.json │ │ │ │ ├── black_candle.json │ │ │ │ ├── black_concrete_powder.json │ │ │ │ ├── black_stained_glass.json │ │ │ │ ├── black_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── black_terracotta.json │ │ │ │ ├── blast_furnace.json │ │ │ │ ├── blue_banner.json │ │ │ │ ├── blue_candle.json │ │ │ │ ├── blue_concrete_powder.json │ │ │ │ ├── blue_stained_glass.json │ │ │ │ ├── blue_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── blue_terracotta.json │ │ │ │ ├── bolt_armor_trim_smithing_template.json │ │ │ │ ├── bow.json │ │ │ │ ├── brown_banner.json │ │ │ │ ├── brown_candle.json │ │ │ │ ├── brown_concrete_powder.json │ │ │ │ ├── brown_stained_glass.json │ │ │ │ ├── brown_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── brown_terracotta.json │ │ │ │ ├── brush.json │ │ │ │ ├── bucket.json │ │ │ │ ├── bundle.json │ │ │ │ ├── calibrated_sculk_sensor.json │ │ │ │ ├── campfire.json │ │ │ │ ├── candle.json │ │ │ │ ├── cauldron.json │ │ │ │ ├── cherry_chest_boat.json │ │ │ │ ├── cherry_fence.json │ │ │ │ ├── cherry_fence_gate.json │ │ │ │ ├── cherry_sign.json │ │ │ │ ├── chest_minecart.json │ │ │ │ ├── clock.json │ │ │ │ ├── coast_armor_trim_smithing_template.json │ │ │ │ ├── compass.json │ │ │ │ ├── copper_axe.json │ │ │ │ ├── copper_bars.json │ │ │ │ ├── copper_boots.json │ │ │ │ ├── copper_chain.json │ │ │ │ ├── copper_chest.json │ │ │ │ ├── copper_chestplate.json │ │ │ │ ├── copper_door.json │ │ │ │ ├── copper_helmet.json │ │ │ │ ├── copper_hoe.json │ │ │ │ ├── copper_leggings.json │ │ │ │ ├── copper_nugget.json │ │ │ │ ├── copper_pickaxe.json │ │ │ │ ├── copper_shovel.json │ │ │ │ ├── copper_sword.json │ │ │ │ ├── copper_torch.json │ │ │ │ ├── copper_trapdoor.json │ │ │ │ ├── crafter.json │ │ │ │ ├── crimson_fence.json │ │ │ │ ├── crimson_fence_gate.json │ │ │ │ ├── crimson_sign.json │ │ │ │ ├── crossbow.json │ │ │ │ ├── cyan_banner.json │ │ │ │ ├── cyan_candle.json │ │ │ │ ├── cyan_concrete_powder.json │ │ │ │ ├── cyan_dye.json │ │ │ │ ├── cyan_stained_glass.json │ │ │ │ ├── cyan_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── cyan_terracotta.json │ │ │ │ ├── dark_oak_chest_boat.json │ │ │ │ ├── dark_oak_fence.json │ │ │ │ ├── dark_oak_fence_gate.json │ │ │ │ ├── dark_oak_sign.json │ │ │ │ ├── dark_prismarine.json │ │ │ │ ├── detector_rail.json │ │ │ │ ├── diamond_axe.json │ │ │ │ ├── diamond_boots.json │ │ │ │ ├── diamond_chestplate.json │ │ │ │ ├── diamond_helmet.json │ │ │ │ ├── diamond_hoe.json │ │ │ │ ├── diamond_leggings.json │ │ │ │ ├── diamond_pickaxe.json │ │ │ │ ├── diamond_shovel.json │ │ │ │ ├── diamond_sword.json │ │ │ │ ├── diorite.json │ │ │ │ ├── dispenser.json │ │ │ │ ├── dropper.json │ │ │ │ ├── dune_armor_trim_smithing_template.json │ │ │ │ ├── dye_black_bed.json │ │ │ │ ├── dye_black_carpet.json │ │ │ │ ├── dye_black_harness.json │ │ │ │ ├── dye_black_wool.json │ │ │ │ ├── dye_blue_bed.json │ │ │ │ ├── dye_blue_carpet.json │ │ │ │ ├── dye_blue_harness.json │ │ │ │ ├── dye_blue_wool.json │ │ │ │ ├── dye_brown_bed.json │ │ │ │ ├── dye_brown_carpet.json │ │ │ │ ├── dye_brown_harness.json │ │ │ │ ├── dye_brown_wool.json │ │ │ │ ├── dye_cyan_bed.json │ │ │ │ ├── dye_cyan_carpet.json │ │ │ │ ├── dye_cyan_harness.json │ │ │ │ ├── dye_cyan_wool.json │ │ │ │ ├── dye_gray_bed.json │ │ │ │ ├── dye_gray_carpet.json │ │ │ │ ├── dye_gray_harness.json │ │ │ │ ├── dye_gray_wool.json │ │ │ │ ├── dye_green_bed.json │ │ │ │ ├── dye_green_carpet.json │ │ │ │ ├── dye_green_harness.json │ │ │ │ ├── dye_green_wool.json │ │ │ │ ├── dye_light_blue_bed.json │ │ │ │ ├── dye_light_blue_carpet.json │ │ │ │ ├── dye_light_blue_harness.json │ │ │ │ ├── dye_light_blue_wool.json │ │ │ │ ├── dye_light_gray_bed.json │ │ │ │ ├── dye_light_gray_carpet.json │ │ │ │ ├── dye_light_gray_harness.json │ │ │ │ ├── dye_light_gray_wool.json │ │ │ │ ├── dye_lime_bed.json │ │ │ │ ├── dye_lime_carpet.json │ │ │ │ ├── dye_lime_harness.json │ │ │ │ ├── dye_lime_wool.json │ │ │ │ ├── dye_magenta_bed.json │ │ │ │ ├── dye_magenta_carpet.json │ │ │ │ ├── dye_magenta_harness.json │ │ │ │ ├── dye_magenta_wool.json │ │ │ │ ├── dye_orange_bed.json │ │ │ │ ├── dye_orange_carpet.json │ │ │ │ ├── dye_orange_harness.json │ │ │ │ ├── dye_orange_wool.json │ │ │ │ ├── dye_pink_bed.json │ │ │ │ ├── dye_pink_carpet.json │ │ │ │ ├── dye_pink_harness.json │ │ │ │ ├── dye_pink_wool.json │ │ │ │ ├── dye_purple_bed.json │ │ │ │ ├── dye_purple_carpet.json │ │ │ │ ├── dye_purple_harness.json │ │ │ │ ├── dye_purple_wool.json │ │ │ │ ├── dye_red_bed.json │ │ │ │ ├── dye_red_carpet.json │ │ │ │ ├── dye_red_harness.json │ │ │ │ ├── dye_red_wool.json │ │ │ │ ├── dye_white_bed.json │ │ │ │ ├── dye_white_carpet.json │ │ │ │ ├── dye_white_harness.json │ │ │ │ ├── dye_white_wool.json │ │ │ │ ├── dye_yellow_bed.json │ │ │ │ ├── dye_yellow_carpet.json │ │ │ │ ├── dye_yellow_harness.json │ │ │ │ ├── dye_yellow_wool.json │ │ │ │ ├── enchanting_table.json │ │ │ │ ├── eye_armor_trim_smithing_template.json │ │ │ │ ├── fishing_rod.json │ │ │ │ ├── flint_and_steel.json │ │ │ │ ├── flow_armor_trim_smithing_template.json │ │ │ │ ├── glistering_melon_slice.json │ │ │ │ ├── gold_ingot_from_nuggets.json │ │ │ │ ├── golden_apple.json │ │ │ │ ├── golden_axe.json │ │ │ │ ├── golden_boots.json │ │ │ │ ├── golden_carrot.json │ │ │ │ ├── golden_chestplate.json │ │ │ │ ├── golden_helmet.json │ │ │ │ ├── golden_hoe.json │ │ │ │ ├── golden_leggings.json │ │ │ │ ├── golden_pickaxe.json │ │ │ │ ├── golden_shovel.json │ │ │ │ ├── golden_sword.json │ │ │ │ ├── gray_banner.json │ │ │ │ ├── gray_candle.json │ │ │ │ ├── gray_concrete_powder.json │ │ │ │ ├── gray_dye.json │ │ │ │ ├── gray_stained_glass.json │ │ │ │ ├── gray_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── gray_terracotta.json │ │ │ │ ├── green_banner.json │ │ │ │ ├── green_candle.json │ │ │ │ ├── green_concrete_powder.json │ │ │ │ ├── green_stained_glass.json │ │ │ │ ├── green_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── green_terracotta.json │ │ │ │ ├── grindstone.json │ │ │ │ ├── heavy_weighted_pressure_plate.json │ │ │ │ ├── hopper.json │ │ │ │ ├── host_armor_trim_smithing_template.json │ │ │ │ ├── iron_axe.json │ │ │ │ ├── iron_bars.json │ │ │ │ ├── iron_boots.json │ │ │ │ ├── iron_chain.json │ │ │ │ ├── iron_chestplate.json │ │ │ │ ├── iron_door.json │ │ │ │ ├── iron_helmet.json │ │ │ │ ├── iron_hoe.json │ │ │ │ ├── iron_ingot_from_nuggets.json │ │ │ │ ├── iron_leggings.json │ │ │ │ ├── iron_pickaxe.json │ │ │ │ ├── iron_shovel.json │ │ │ │ ├── iron_sword.json │ │ │ │ ├── iron_trapdoor.json │ │ │ │ ├── item_frame.json │ │ │ │ ├── jukebox.json │ │ │ │ ├── jungle_chest_boat.json │ │ │ │ ├── jungle_fence.json │ │ │ │ ├── jungle_fence_gate.json │ │ │ │ ├── jungle_sign.json │ │ │ │ ├── ladder.json │ │ │ │ ├── lantern.json │ │ │ │ ├── lead.json │ │ │ │ ├── lever.json │ │ │ │ ├── light_blue_banner.json │ │ │ │ ├── light_blue_candle.json │ │ │ │ ├── light_blue_concrete_powder.json │ │ │ │ ├── light_blue_dye_from_blue_white_dye.json │ │ │ │ ├── light_blue_stained_glass.json │ │ │ │ ├── light_blue_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── light_blue_terracotta.json │ │ │ │ ├── light_gray_banner.json │ │ │ │ ├── light_gray_candle.json │ │ │ │ ├── light_gray_concrete_powder.json │ │ │ │ ├── light_gray_dye_from_black_white_dye.json │ │ │ │ ├── light_gray_dye_from_gray_white_dye.json │ │ │ │ ├── light_gray_stained_glass.json │ │ │ │ ├── light_gray_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── light_gray_terracotta.json │ │ │ │ ├── light_weighted_pressure_plate.json │ │ │ │ ├── lightning_rod.json │ │ │ │ ├── lime_banner.json │ │ │ │ ├── lime_candle.json │ │ │ │ ├── lime_concrete_powder.json │ │ │ │ ├── lime_dye.json │ │ │ │ ├── lime_stained_glass.json │ │ │ │ ├── lime_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── lime_terracotta.json │ │ │ │ ├── lodestone.json │ │ │ │ ├── loom.json │ │ │ │ ├── magenta_banner.json │ │ │ │ ├── magenta_candle.json │ │ │ │ ├── magenta_concrete_powder.json │ │ │ │ ├── magenta_dye_from_blue_red_pink.json │ │ │ │ ├── magenta_dye_from_blue_red_white_dye.json │ │ │ │ ├── magenta_dye_from_purple_and_pink.json │ │ │ │ ├── magenta_stained_glass.json │ │ │ │ ├── magenta_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── magenta_terracotta.json │ │ │ │ ├── mangrove_chest_boat.json │ │ │ │ ├── mangrove_fence.json │ │ │ │ ├── mangrove_fence_gate.json │ │ │ │ ├── mangrove_sign.json │ │ │ │ ├── minecart.json │ │ │ │ ├── mossy_cobblestone_from_moss_block.json │ │ │ │ ├── mossy_cobblestone_from_vine.json │ │ │ │ ├── netherite_ingot.json │ │ │ │ ├── netherite_upgrade_smithing_template.json │ │ │ │ ├── oak_chest_boat.json │ │ │ │ ├── oak_fence.json │ │ │ │ ├── oak_fence_gate.json │ │ │ │ ├── oak_sign.json │ │ │ │ ├── observer.json │ │ │ │ ├── orange_banner.json │ │ │ │ ├── orange_candle.json │ │ │ │ ├── orange_concrete_powder.json │ │ │ │ ├── orange_dye_from_red_yellow.json │ │ │ │ ├── orange_stained_glass.json │ │ │ │ ├── orange_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── orange_terracotta.json │ │ │ │ ├── painting.json │ │ │ │ ├── pale_oak_chest_boat.json │ │ │ │ ├── pale_oak_fence.json │ │ │ │ ├── pale_oak_fence_gate.json │ │ │ │ ├── pale_oak_sign.json │ │ │ │ ├── pink_banner.json │ │ │ │ ├── pink_candle.json │ │ │ │ ├── pink_concrete_powder.json │ │ │ │ ├── pink_dye_from_red_white_dye.json │ │ │ │ ├── pink_stained_glass.json │ │ │ │ ├── pink_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── pink_terracotta.json │ │ │ │ ├── piston.json │ │ │ │ ├── polished_deepslate.json │ │ │ │ ├── powered_rail.json │ │ │ │ ├── purple_banner.json │ │ │ │ ├── purple_candle.json │ │ │ │ ├── purple_concrete_powder.json │ │ │ │ ├── purple_dye.json │ │ │ │ ├── purple_stained_glass.json │ │ │ │ ├── purple_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── purple_terracotta.json │ │ │ │ ├── rail.json │ │ │ │ ├── raiser_armor_trim_smithing_template.json │ │ │ │ ├── red_banner.json │ │ │ │ ├── red_candle.json │ │ │ │ ├── red_concrete_powder.json │ │ │ │ ├── red_stained_glass.json │ │ │ │ ├── red_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── red_terracotta.json │ │ │ │ ├── redstone_torch.json │ │ │ │ ├── rib_armor_trim_smithing_template.json │ │ │ │ ├── saddle.json │ │ │ │ ├── scaffolding.json │ │ │ │ ├── sentry_armor_trim_smithing_template.json │ │ │ │ ├── shaper_armor_trim_smithing_template.json │ │ │ │ ├── shears.json │ │ │ │ ├── shield.json │ │ │ │ ├── shulker_box.json │ │ │ │ ├── silence_armor_trim_smithing_template.json │ │ │ │ ├── smithing_table.json │ │ │ │ ├── snout_armor_trim_smithing_template.json │ │ │ │ ├── soul_campfire.json │ │ │ │ ├── soul_lantern.json │ │ │ │ ├── soul_torch.json │ │ │ │ ├── spire_armor_trim_smithing_template.json │ │ │ │ ├── spruce_chest_boat.json │ │ │ │ ├── spruce_fence.json │ │ │ │ ├── spruce_fence_gate.json │ │ │ │ ├── spruce_sign.json │ │ │ │ ├── spyglass.json │ │ │ │ ├── stone_axe.json │ │ │ │ ├── stone_hoe.json │ │ │ │ ├── stone_pickaxe.json │ │ │ │ ├── stone_shovel.json │ │ │ │ ├── stone_sword.json │ │ │ │ ├── stonecutter.json │ │ │ │ ├── tide_armor_trim_smithing_template.json │ │ │ │ ├── tinted_glass.json │ │ │ │ ├── torch.json │ │ │ │ ├── trapped_chest.json │ │ │ │ ├── tripwire_hook.json │ │ │ │ ├── vex_armor_trim_smithing_template.json │ │ │ │ ├── ward_armor_trim_smithing_template.json │ │ │ │ ├── warped_fence.json │ │ │ │ ├── warped_fence_gate.json │ │ │ │ ├── warped_sign.json │ │ │ │ ├── wayfinder_armor_trim_smithing_template.json │ │ │ │ ├── white_banner.json │ │ │ │ ├── white_candle.json │ │ │ │ ├── white_concrete_powder.json │ │ │ │ ├── white_stained_glass.json │ │ │ │ ├── white_stained_glass_pane_from_glass_pane.json │ │ │ │ ├── white_terracotta.json │ │ │ │ ├── wild_armor_trim_smithing_template.json │ │ │ │ ├── wooden_axe.json │ │ │ │ ├── wooden_hoe.json │ │ │ │ ├── wooden_pickaxe.json │ │ │ │ ├── wooden_shovel.json │ │ │ │ ├── wooden_sword.json │ │ │ │ ├── yellow_banner.json │ │ │ │ ├── yellow_candle.json │ │ │ │ ├── yellow_concrete_powder.json │ │ │ │ ├── yellow_stained_glass.json │ │ │ │ ├── yellow_stained_glass_pane_from_glass_pane.json │ │ │ │ └── yellow_terracotta.json │ │ │ └── tags │ │ │ │ ├── block │ │ │ │ ├── incorrect_for_copper_tool.json │ │ │ │ ├── incorrect_for_diamond_tool.json │ │ │ │ ├── incorrect_for_gold_tool.json │ │ │ │ ├── incorrect_for_iron_tool.json │ │ │ │ ├── incorrect_for_stone_tool.json │ │ │ │ └── incorrect_for_wooden_tool.json │ │ │ │ └── damage_type │ │ │ │ ├── always_triggers_silverfish.json │ │ │ │ ├── avoids_guardian_thorns.json │ │ │ │ ├── bypasses_armor.json │ │ │ │ ├── bypasses_wolf_armor.json │ │ │ │ ├── no_knockback.json │ │ │ │ ├── panic_causes.json │ │ │ │ └── witch_resistant_to.json │ │ └── neoforge │ │ │ ├── data_maps │ │ │ ├── block │ │ │ │ ├── oxidizables.json │ │ │ │ ├── strippables.json │ │ │ │ └── waxables.json │ │ │ ├── entity_type │ │ │ │ ├── acceptable_villager_distances.json │ │ │ │ ├── monster_room_mobs.json │ │ │ │ └── parrot_imitations.json │ │ │ ├── game_event │ │ │ │ └── vibration_frequencies.json │ │ │ ├── item │ │ │ │ ├── compostables.json │ │ │ │ └── furnace_fuels.json │ │ │ ├── villager_profession │ │ │ │ └── raid_hero_gifts.json │ │ │ └── worldgen │ │ │ │ └── biome │ │ │ │ └── villager_types.json │ │ │ └── tags │ │ │ ├── block │ │ │ ├── enderman_place_on_blacklist.json │ │ │ ├── needs_netherite_tool.json │ │ │ └── villager_farmlands.json │ │ │ ├── damage_type │ │ │ ├── is_environment.json │ │ │ ├── is_magic.json │ │ │ ├── is_physical.json │ │ │ ├── is_poison.json │ │ │ ├── is_technical.json │ │ │ ├── is_wither.json │ │ │ └── no_flinch.json │ │ │ └── item │ │ │ ├── enchanting_fuels.json │ │ │ ├── piglin_usable_crossbows.json │ │ │ ├── pillager_usable_crossbows.json │ │ │ └── skeleton_usable_bows.json │ │ ├── pack.mcmeta │ │ └── reports │ │ └── registry_order.json └── main │ ├── java │ └── net │ │ └── neoforged │ │ └── neoforge │ │ ├── attachment │ │ ├── AttachmentHolder.java │ │ ├── AttachmentInternals.java │ │ ├── AttachmentSync.java │ │ ├── AttachmentSyncHandler.java │ │ ├── AttachmentType.java │ │ ├── IAttachmentCopyHandler.java │ │ ├── IAttachmentHolder.java │ │ ├── IAttachmentSerializer.java │ │ ├── LevelAttachmentsSavedData.java │ │ └── package-info.java │ │ ├── capabilities │ │ ├── BaseCapability.java │ │ ├── BlockCapability.java │ │ ├── BlockCapabilityCache.java │ │ ├── Capabilities.java │ │ ├── CapabilityHooks.java │ │ ├── CapabilityListenerHolder.java │ │ ├── CapabilityRegistry.java │ │ ├── EntityCapability.java │ │ ├── IBlockCapabilityProvider.java │ │ ├── ICapabilityInvalidationListener.java │ │ ├── ICapabilityProvider.java │ │ ├── ItemCapability.java │ │ ├── RegisterCapabilitiesEvent.java │ │ └── package-info.java │ │ ├── common │ │ ├── BasicItemListing.java │ │ ├── BooleanAttribute.java │ │ ├── CommonHooks.java │ │ ├── CreativeModeTabRegistry.java │ │ ├── DataMapHooks.java │ │ ├── FarmlandWaterManager.java │ │ ├── IMinecartCollisionHandler.java │ │ ├── IOUtilities.java │ │ ├── IShearable.java │ │ ├── ItemAbilities.java │ │ ├── ItemAbility.java │ │ ├── LenientUnboundedMapCodec.java │ │ ├── ModConfigSpec.java │ │ ├── MonsterRoomHooks.java │ │ ├── MutableDataComponentHolder.java │ │ ├── NeoForge.java │ │ ├── NeoForgeBuildType.java │ │ ├── NeoForgeEventHandler.java │ │ ├── NeoForgeMod.java │ │ ├── OnlyInWarningsHandler.java │ │ ├── PercentageAttribute.java │ │ ├── SoundAction.java │ │ ├── SoundActions.java │ │ ├── SpecialPlantable.java │ │ ├── TagConventionLogWarning.java │ │ ├── Tags.java │ │ ├── TranslatableEnum.java │ │ ├── UsernameCache.java │ │ ├── VillagerTradingManager.java │ │ ├── advancements │ │ │ └── critereon │ │ │ │ ├── ItemAbilityPredicate.java │ │ │ │ ├── PiglinCurrencyItemPredicate.java │ │ │ │ ├── PiglinNeutralArmorEntityPredicate.java │ │ │ │ ├── SnowBootsEntityPredicate.java │ │ │ │ ├── TridentEntityPredicate.java │ │ │ │ └── package-info.java │ │ ├── brewing │ │ │ ├── BrewingRecipe.java │ │ │ ├── BrewingRecipeRegistry.java │ │ │ ├── IBrewingRecipe.java │ │ │ └── package-info.java │ │ ├── command │ │ │ ├── EntitySelectorManager.java │ │ │ ├── IEntitySelectorType.java │ │ │ └── package-info.java │ │ ├── conditions │ │ │ ├── AlwaysCondition.java │ │ │ ├── AndCondition.java │ │ │ ├── ConditionContext.java │ │ │ ├── ConditionalOps.java │ │ │ ├── FeatureFlagsEnabledCondition.java │ │ │ ├── ICondition.java │ │ │ ├── ModLoadedCondition.java │ │ │ ├── NeoForgeConditions.java │ │ │ ├── NeverCondition.java │ │ │ ├── NotCondition.java │ │ │ ├── OrCondition.java │ │ │ ├── RegisteredCondition.java │ │ │ ├── TagEmptyCondition.java │ │ │ ├── WithConditions.java │ │ │ └── package-info.java │ │ ├── config │ │ │ ├── NeoForgeCommonConfig.java │ │ │ ├── NeoForgeServerConfig.java │ │ │ └── package-info.java │ │ ├── crafting │ │ │ ├── BlockTagIngredient.java │ │ │ ├── CompoundIngredient.java │ │ │ ├── ConditionalRecipeOutput.java │ │ │ ├── CustomDisplayIngredient.java │ │ │ ├── DataComponentIngredient.java │ │ │ ├── DifferenceIngredient.java │ │ │ ├── ICustomIngredient.java │ │ │ ├── IRecipeContainer.java │ │ │ ├── IngredientCodecs.java │ │ │ ├── IngredientType.java │ │ │ ├── IntersectionIngredient.java │ │ │ ├── RecipePriorityManager.java │ │ │ ├── SizedIngredient.java │ │ │ └── package-info.java │ │ ├── damagesource │ │ │ ├── DamageContainer.java │ │ │ ├── IDeathMessageProvider.java │ │ │ ├── IReductionFunction.java │ │ │ ├── IScalingFunction.java │ │ │ └── package-info.java │ │ ├── data │ │ │ ├── BlockTagCopyingItemTagProvider.java │ │ │ ├── BlockTagsProvider.java │ │ │ ├── ConditionalLootTableSubProvider.java │ │ │ ├── DataMapProvider.java │ │ │ ├── DatapackBuiltinEntriesProvider.java │ │ │ ├── GeneratingOverlayMetadataSection.java │ │ │ ├── GlobalLootModifierProvider.java │ │ │ ├── ItemTagsProvider.java │ │ │ ├── JsonCodecProvider.java │ │ │ ├── LanguageProvider.java │ │ │ ├── RecipePrioritiesProvider.java │ │ │ ├── SoundDefinition.java │ │ │ ├── SoundDefinitionsProvider.java │ │ │ ├── fixes │ │ │ │ ├── NeoForgeEntityLegacyAttributesFix.java │ │ │ │ └── package-info.java │ │ │ ├── internal │ │ │ │ ├── NeoForgeAdvancementProvider.java │ │ │ │ ├── NeoForgeBiomeTagsProvider.java │ │ │ │ ├── NeoForgeBlockTagsProvider.java │ │ │ │ ├── NeoForgeDamageTypeTagsProvider.java │ │ │ │ ├── NeoForgeDataMapsProvider.java │ │ │ │ ├── NeoForgeEnchantmentTagsProvider.java │ │ │ │ ├── NeoForgeEntityTypeTagsProvider.java │ │ │ │ ├── NeoForgeFluidTagsProvider.java │ │ │ │ ├── NeoForgeItemTagsProvider.java │ │ │ │ ├── NeoForgeLanguageProvider.java │ │ │ │ ├── NeoForgeLootTableProvider.java │ │ │ │ ├── NeoForgeRecipeProvider.java │ │ │ │ ├── NeoForgeRegistryOrderReportProvider.java │ │ │ │ ├── NeoForgeStructureTagsProvider.java │ │ │ │ ├── VanillaSoundDefinitionsProvider.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── enums │ │ │ ├── BubbleColumnDirection.java │ │ │ └── package-info.java │ │ ├── extensions │ │ │ ├── ContainerExtension.java │ │ │ ├── IAbstractBoatExtension.java │ │ │ ├── IAdvancementBuilderExtension.java │ │ │ ├── IAttributeExtension.java │ │ │ ├── IBaseRailBlockExtension.java │ │ │ ├── IBlockAndTintGetterExtension.java │ │ │ ├── IBlockEntityExtension.java │ │ │ ├── IBlockExtension.java │ │ │ ├── IBlockGetterExtension.java │ │ │ ├── IBlockStateExtension.java │ │ │ ├── IBucketPickupExtension.java │ │ │ ├── IClientCommonPacketListenerExtension.java │ │ │ ├── ICommandSourceStackExtension.java │ │ │ ├── ICommonPacketListener.java │ │ │ ├── IDataComponentHolderExtension.java │ │ │ ├── IDataComponentMapBuilderExtensions.java │ │ │ ├── IDispensibleContainerItemExtension.java │ │ │ ├── IEnchantmentExtension.java │ │ │ ├── IEntityExtension.java │ │ │ ├── IFallableExtension.java │ │ │ ├── IFluidExtension.java │ │ │ ├── IFluidStateExtension.java │ │ │ ├── IFriendlyByteBufExtension.java │ │ │ ├── IHolderExtension.java │ │ │ ├── IHolderLookupProviderExtension.java │ │ │ ├── IHolderSetExtension.java │ │ │ ├── IItemExtension.java │ │ │ ├── IItemPropertiesExtensions.java │ │ │ ├── IItemStackExtension.java │ │ │ ├── ILevelExtension.java │ │ │ ├── ILevelReaderExtension.java │ │ │ ├── ILivingEntityExtension.java │ │ │ ├── IMenuProviderExtension.java │ │ │ ├── IMenuTypeExtension.java │ │ │ ├── IMobEffectExtension.java │ │ │ ├── IOwnedSpawner.java │ │ │ ├── IPackResourcesExtension.java │ │ │ ├── IPacketFlowExtension.java │ │ │ ├── IPlayerExtension.java │ │ │ ├── IPlayerListExtension.java │ │ │ ├── IRecipeOutputExtension.java │ │ │ ├── IServerChunkCacheExtension.java │ │ │ ├── IServerCommonPacketListenerExtension.java │ │ │ ├── IServerConfigurationPacketListenerExtension.java │ │ │ ├── IServerGamePacketListenerExtension.java │ │ │ ├── ITagAppenderExtension.java │ │ │ ├── ITagBuilderExtension.java │ │ │ ├── ITransformationExtension.java │ │ │ ├── LootTableSubProviderExtension.java │ │ │ ├── ValueInputExtension.java │ │ │ ├── ValueOutputExtension.java │ │ │ └── package-info.java │ │ ├── loot │ │ │ ├── AddTableLootModifier.java │ │ │ ├── CanItemPerformAbility.java │ │ │ ├── IGlobalLootModifier.java │ │ │ ├── LootModifier.java │ │ │ ├── LootModifierManager.java │ │ │ ├── LootTableIdCondition.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── ticket │ │ │ ├── AABBTicket.java │ │ │ ├── ChunkTicketManager.java │ │ │ ├── ITicketGetter.java │ │ │ ├── ITicketManager.java │ │ │ ├── SimpleTicket.java │ │ │ └── package-info.java │ │ ├── util │ │ │ ├── AttributeTooltipContext.java │ │ │ ├── AttributeUtil.java │ │ │ ├── BlockSnapshot.java │ │ │ ├── CenterChunkPosComparator.java │ │ │ ├── ConcatenatedListView.java │ │ │ ├── DeferredSoundType.java │ │ │ ├── FakePlayer.java │ │ │ ├── FakePlayerFactory.java │ │ │ ├── FriendlyByteBufUtil.java │ │ │ ├── HexDumper.java │ │ │ ├── InsertableLinkedOpenCustomHashSet.java │ │ │ ├── InsertingContents.java │ │ │ ├── ItemStackMap.java │ │ │ ├── JsonUtils.java │ │ │ ├── Lazy.java │ │ │ ├── LogMessageAdapter.java │ │ │ ├── MutableHashedLinkedMap.java │ │ │ ├── NeoForgeExtraCodecs.java │ │ │ ├── RecipeMatcher.java │ │ │ ├── SelfTest.java │ │ │ ├── Size2i.java │ │ │ ├── SortedProperties.java │ │ │ ├── TablePrinter.java │ │ │ ├── TextTable.java │ │ │ ├── TransformationHelper.java │ │ │ ├── TriPredicate.java │ │ │ ├── ValueIOSerializable.java │ │ │ ├── VanillaClassToKey.java │ │ │ ├── flag │ │ │ │ ├── FeatureFlagLoader.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── strategy │ │ │ │ ├── BasicStrategy.java │ │ │ │ ├── IdentityStrategy.java │ │ │ │ └── package-info.java │ │ └── world │ │ │ ├── AuxiliaryLightManager.java │ │ │ ├── BiomeGenerationSettingsBuilder.java │ │ │ ├── BiomeModifier.java │ │ │ ├── BiomeModifiers.java │ │ │ ├── BiomeSpecialEffectsBuilder.java │ │ │ ├── ClimateSettingsBuilder.java │ │ │ ├── LevelChunkAuxiliaryLightManager.java │ │ │ ├── MobSpawnSettingsBuilder.java │ │ │ ├── ModifiableBiomeInfo.java │ │ │ ├── ModifiableStructureInfo.java │ │ │ ├── NoneBiomeModifier.java │ │ │ ├── NoneStructureModifier.java │ │ │ ├── PieceBeardifierModifier.java │ │ │ ├── StructureModifier.java │ │ │ ├── StructureModifiers.java │ │ │ ├── StructureSettingsBuilder.java │ │ │ ├── chunk │ │ │ ├── ForcedChunkManager.java │ │ │ ├── LoadingValidationCallback.java │ │ │ ├── RegisterTicketControllersEvent.java │ │ │ ├── TicketController.java │ │ │ ├── TicketHelper.java │ │ │ ├── TicketSet.java │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── poi │ │ │ ├── ExtendPoiTypesEvent.java │ │ │ ├── PoiStateSet.java │ │ │ ├── PoiTypeExtender.java │ │ │ └── package-info.java │ │ ├── data │ │ ├── event │ │ │ ├── GatherDataEvent.java │ │ │ └── package-info.java │ │ └── loading │ │ │ ├── DatagenModLoader.java │ │ │ └── package-info.java │ │ ├── energy │ │ ├── ComponentEnergyStorage.java │ │ ├── EmptyEnergyStorage.java │ │ ├── EnergyHandlerAdapter.java │ │ ├── EnergyStorage.java │ │ ├── IEnergyStorage.java │ │ └── package-info.java │ │ ├── entity │ │ ├── IEntityWithComplexSpawn.java │ │ ├── PartEntity.java │ │ ├── XpOrbTargetingEvent.java │ │ └── package-info.java │ │ ├── event │ │ ├── AddAttributeTooltipsEvent.java │ │ ├── AddPackFindersEvent.java │ │ ├── AddServerReloadListenersEvent.java │ │ ├── AnvilUpdateEvent.java │ │ ├── BlockEntityTypeAddBlocksEvent.java │ │ ├── BuildCreativeModeTabContentsEvent.java │ │ ├── CommandEvent.java │ │ ├── DifficultyChangeEvent.java │ │ ├── EventHooks.java │ │ ├── GameShuttingDownEvent.java │ │ ├── GatherSkippedAttributeTooltipsEvent.java │ │ ├── GrindstoneEvent.java │ │ ├── ItemAttributeModifierEvent.java │ │ ├── ItemStackedOnOtherEvent.java │ │ ├── LootTableLoadEvent.java │ │ ├── ModMismatchEvent.java │ │ ├── ModifyDefaultComponentsEvent.java │ │ ├── OnDatapackSyncEvent.java │ │ ├── PlayLevelSoundEvent.java │ │ ├── RegisterCommandsEvent.java │ │ ├── RegisterGameTestsEvent.java │ │ ├── RegisterStructureConversionsEvent.java │ │ ├── ServerChatEvent.java │ │ ├── SortedReloadListenerEvent.java │ │ ├── StatAwardEvent.java │ │ ├── TagsUpdatedEvent.java │ │ ├── VanillaGameEvent.java │ │ ├── brewing │ │ │ ├── PlayerBrewedPotionEvent.java │ │ │ ├── PotionBrewEvent.java │ │ │ ├── RegisterBrewingRecipesEvent.java │ │ │ └── package-info.java │ │ ├── enchanting │ │ │ ├── EnchantmentLevelSetEvent.java │ │ │ ├── GetEnchantmentLevelEvent.java │ │ │ └── package-info.java │ │ ├── entity │ │ │ ├── EntityAttributeCreationEvent.java │ │ │ ├── EntityAttributeModificationEvent.java │ │ │ ├── EntityEvent.java │ │ │ ├── EntityInvulnerabilityCheckEvent.java │ │ │ ├── EntityJoinLevelEvent.java │ │ │ ├── EntityLeaveLevelEvent.java │ │ │ ├── EntityMobGriefingEvent.java │ │ │ ├── EntityMountEvent.java │ │ │ ├── EntityStruckByLightningEvent.java │ │ │ ├── EntityTeleportEvent.java │ │ │ ├── EntityTravelToDimensionEvent.java │ │ │ ├── ProjectileImpactEvent.java │ │ │ ├── RegisterSpawnPlacementsEvent.java │ │ │ ├── item │ │ │ │ ├── ItemEvent.java │ │ │ │ ├── ItemExpireEvent.java │ │ │ │ ├── ItemTossEvent.java │ │ │ │ └── package-info.java │ │ │ ├── living │ │ │ │ ├── AnimalTameEvent.java │ │ │ │ ├── ArmorHurtEvent.java │ │ │ │ ├── BabyEntitySpawnEvent.java │ │ │ │ ├── EffectParticleModificationEvent.java │ │ │ │ ├── EnderManAngerEvent.java │ │ │ │ ├── FinalizeSpawnEvent.java │ │ │ │ ├── LivingBreatheEvent.java │ │ │ │ ├── LivingChangeTargetEvent.java │ │ │ │ ├── LivingConversionEvent.java │ │ │ │ ├── LivingDamageEvent.java │ │ │ │ ├── LivingDeathEvent.java │ │ │ │ ├── LivingDestroyBlockEvent.java │ │ │ │ ├── LivingDropsEvent.java │ │ │ │ ├── LivingDrownEvent.java │ │ │ │ ├── LivingEntityUseItemEvent.java │ │ │ │ ├── LivingEquipmentChangeEvent.java │ │ │ │ ├── LivingEvent.java │ │ │ │ ├── LivingExperienceDropEvent.java │ │ │ │ ├── LivingFallEvent.java │ │ │ │ ├── LivingGetProjectileEvent.java │ │ │ │ ├── LivingHealEvent.java │ │ │ │ ├── LivingIncomingDamageEvent.java │ │ │ │ ├── LivingKnockBackEvent.java │ │ │ │ ├── LivingShieldBlockEvent.java │ │ │ │ ├── LivingSwapItemsEvent.java │ │ │ │ ├── LivingUseTotemEvent.java │ │ │ │ ├── MobDespawnEvent.java │ │ │ │ ├── MobEffectEvent.java │ │ │ │ ├── MobSpawnEvent.java │ │ │ │ ├── MobSplitEvent.java │ │ │ │ ├── SpawnClusterSizeEvent.java │ │ │ │ └── package-info.java │ │ │ ├── package-info.java │ │ │ └── player │ │ │ │ ├── AdvancementEvent.java │ │ │ │ ├── AnvilCraftEvent.java │ │ │ │ ├── ArrowLooseEvent.java │ │ │ │ ├── ArrowNockEvent.java │ │ │ │ ├── AttackEntityEvent.java │ │ │ │ ├── BonemealEvent.java │ │ │ │ ├── CanContinueSleepingEvent.java │ │ │ │ ├── CanPlayerSleepEvent.java │ │ │ │ ├── ClientInformationUpdatedEvent.java │ │ │ │ ├── CriticalHitEvent.java │ │ │ │ ├── ItemEntityPickupEvent.java │ │ │ │ ├── ItemFishedEvent.java │ │ │ │ ├── ItemTooltipEvent.java │ │ │ │ ├── PermissionsChangedEvent.java │ │ │ │ ├── PlayerContainerEvent.java │ │ │ │ ├── PlayerDestroyItemEvent.java │ │ │ │ ├── PlayerEnchantItemEvent.java │ │ │ │ ├── PlayerEvent.java │ │ │ │ ├── PlayerFlyableFallEvent.java │ │ │ │ ├── PlayerInteractEvent.java │ │ │ │ ├── PlayerNegotiationEvent.java │ │ │ │ ├── PlayerRespawnPositionEvent.java │ │ │ │ ├── PlayerSetSpawnEvent.java │ │ │ │ ├── PlayerSpawnPhantomsEvent.java │ │ │ │ ├── PlayerWakeUpEvent.java │ │ │ │ ├── PlayerXpEvent.java │ │ │ │ ├── SweepAttackEvent.java │ │ │ │ ├── TradeWithVillagerEvent.java │ │ │ │ ├── UseItemOnBlockEvent.java │ │ │ │ └── package-info.java │ │ ├── furnace │ │ │ ├── FurnaceFuelBurnTimeEvent.java │ │ │ └── package-info.java │ │ ├── level │ │ │ ├── AlterGroundEvent.java │ │ │ ├── BlockDropsEvent.java │ │ │ ├── BlockEvent.java │ │ │ ├── BlockGrowFeatureEvent.java │ │ │ ├── ChunkDataEvent.java │ │ │ ├── ChunkEvent.java │ │ │ ├── ChunkTicketLevelUpdatedEvent.java │ │ │ ├── ChunkWatchEvent.java │ │ │ ├── ExplosionEvent.java │ │ │ ├── ExplosionKnockbackEvent.java │ │ │ ├── LevelEvent.java │ │ │ ├── ModifyCustomSpawnersEvent.java │ │ │ ├── NoteBlockEvent.java │ │ │ ├── PistonEvent.java │ │ │ ├── SleepFinishedTimeEvent.java │ │ │ ├── block │ │ │ │ ├── CreateFluidSourceEvent.java │ │ │ │ ├── CropGrowEvent.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── server │ │ │ ├── ServerAboutToStartEvent.java │ │ │ ├── ServerLifecycleEvent.java │ │ │ ├── ServerStartedEvent.java │ │ │ ├── ServerStartingEvent.java │ │ │ ├── ServerStoppedEvent.java │ │ │ ├── ServerStoppingEvent.java │ │ │ └── package-info.java │ │ ├── tick │ │ │ ├── EntityTickEvent.java │ │ │ ├── LevelTickEvent.java │ │ │ ├── PlayerTickEvent.java │ │ │ ├── ServerTickEvent.java │ │ │ └── package-info.java │ │ └── village │ │ │ ├── VillageSiegeEvent.java │ │ │ ├── VillagerTradesEvent.java │ │ │ ├── WandererTradesEvent.java │ │ │ └── package-info.java │ │ ├── fluids │ │ ├── BaseFlowingFluid.java │ │ ├── CauldronFluidContent.java │ │ ├── FluidActionResult.java │ │ ├── FluidInteractionRegistry.java │ │ ├── FluidStack.java │ │ ├── FluidStackLinkedSet.java │ │ ├── FluidType.java │ │ ├── FluidUtil.java │ │ ├── IFluidTank.java │ │ ├── RegisterCauldronFluidContentEvent.java │ │ ├── SimpleFluidContent.java │ │ ├── capability │ │ │ ├── FluidResourceHandlerAdapter.java │ │ │ ├── FluidResourceHandlerItemAdapter.java │ │ │ ├── IFluidHandler.java │ │ │ ├── IFluidHandlerItem.java │ │ │ ├── package-info.java │ │ │ ├── templates │ │ │ │ ├── EmptyFluidHandler.java │ │ │ │ ├── FluidHandlerItemStack.java │ │ │ │ ├── FluidHandlerItemStackSimple.java │ │ │ │ ├── FluidTank.java │ │ │ │ ├── VoidFluidHandler.java │ │ │ │ └── package-info.java │ │ │ └── wrappers │ │ │ │ ├── BlockWrapper.java │ │ │ │ ├── BucketPickupHandlerWrapper.java │ │ │ │ ├── FluidBucketWrapper.java │ │ │ │ └── package-info.java │ │ ├── crafting │ │ │ ├── CompoundFluidIngredient.java │ │ │ ├── CustomDisplayFluidIngredient.java │ │ │ ├── DataComponentFluidIngredient.java │ │ │ ├── DifferenceFluidIngredient.java │ │ │ ├── FluidIngredient.java │ │ │ ├── FluidIngredientCodecs.java │ │ │ ├── FluidIngredientType.java │ │ │ ├── IntersectionFluidIngredient.java │ │ │ ├── SimpleFluidIngredient.java │ │ │ ├── SizedFluidIngredient.java │ │ │ ├── display │ │ │ │ ├── FluidSlotDisplay.java │ │ │ │ ├── FluidStackContentsFactory.java │ │ │ │ ├── FluidStackSlotDisplay.java │ │ │ │ ├── FluidTagSlotDisplay.java │ │ │ │ ├── ForFluidStacks.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── gametest │ │ ├── BlockPosValueConverter.java │ │ ├── GameTestHooks.java │ │ └── package-info.java │ │ ├── internal │ │ ├── BrandingControl.java │ │ ├── CommonModLoader.java │ │ ├── NeoForgeBindings.java │ │ ├── NeoForgeProxy.java │ │ ├── NeoForgeVersionCheck.java │ │ ├── NonExhaustiveEnum.java │ │ ├── RegistrationEvents.java │ │ └── package-info.java │ │ ├── items │ │ ├── ComponentItemHandler.java │ │ ├── IItemHandler.java │ │ ├── IItemHandlerModifiable.java │ │ ├── ItemHandlerCopySlot.java │ │ ├── ItemHandlerHelper.java │ │ ├── ItemResourceHandlerAdapter.java │ │ ├── ItemStackHandler.java │ │ ├── SlotItemHandler.java │ │ ├── package-info.java │ │ └── wrapper │ │ │ ├── CombinedInvWrapper.java │ │ │ ├── EmptyItemHandler.java │ │ │ ├── EntityArmorInvWrapper.java │ │ │ ├── EntityEquipmentInvWrapper.java │ │ │ ├── EntityHandsInvWrapper.java │ │ │ ├── ForwardingItemHandler.java │ │ │ ├── InvWrapper.java │ │ │ ├── PlayerArmorInvWrapper.java │ │ │ ├── PlayerInvWrapper.java │ │ │ ├── PlayerMainInvWrapper.java │ │ │ ├── PlayerOffhandInvWrapper.java │ │ │ ├── RangedWrapper.java │ │ │ ├── RecipeWrapper.java │ │ │ ├── SidedInvWrapper.java │ │ │ └── package-info.java │ │ ├── junit │ │ ├── JUnitMain.java │ │ └── package-info.java │ │ ├── logging │ │ ├── CrashReportExtender.java │ │ ├── PacketDump.java │ │ ├── ThreadInfoUtil.java │ │ └── package-info.java │ │ ├── mixins │ │ ├── BlockEntityTypeAccessor.java │ │ ├── MappedRegistryAccessor.java │ │ └── package-info.java │ │ ├── model │ │ └── data │ │ │ ├── ModelData.java │ │ │ ├── ModelDataManager.java │ │ │ ├── ModelProperty.java │ │ │ └── package-info.java │ │ ├── network │ │ ├── ConfigSync.java │ │ ├── ConfigurationInitialization.java │ │ ├── DualStackUtils.java │ │ ├── IContainerFactory.java │ │ ├── NetworkInitialization.java │ │ ├── PacketDistributor.java │ │ ├── bundle │ │ │ ├── BundlePacketUtils.java │ │ │ └── package-info.java │ │ ├── codec │ │ │ ├── NeoForgeStreamCodecs.java │ │ │ └── package-info.java │ │ ├── configuration │ │ │ ├── CheckExtensibleEnums.java │ │ │ ├── CheckFeatureFlags.java │ │ │ ├── CommonRegisterTask.java │ │ │ ├── CommonVersionTask.java │ │ │ ├── ICustomConfigurationTask.java │ │ │ ├── RegistryDataMapNegotiation.java │ │ │ ├── SyncConfig.java │ │ │ ├── SyncRegistries.java │ │ │ └── package-info.java │ │ ├── connection │ │ │ ├── ConnectionType.java │ │ │ ├── ConnectionUtils.java │ │ │ └── package-info.java │ │ ├── event │ │ │ ├── RegisterConfigurationTasksEvent.java │ │ │ ├── RegisterPayloadHandlersEvent.java │ │ │ └── package-info.java │ │ ├── filters │ │ │ ├── CommandTreeCleaner.java │ │ │ ├── DynamicChannelHandler.java │ │ │ ├── GenericPacketSplitter.java │ │ │ ├── NetworkFilters.java │ │ │ ├── VanillaConnectionNetworkFilter.java │ │ │ ├── VanillaPacketFilter.java │ │ │ └── package-info.java │ │ ├── handlers │ │ │ ├── ServerPayloadHandler.java │ │ │ └── package-info.java │ │ ├── handling │ │ │ ├── IPayloadContext.java │ │ │ ├── IPayloadHandler.java │ │ │ ├── MainThreadPayloadHandler.java │ │ │ ├── QueuedPacket.java │ │ │ ├── ServerPayloadContext.java │ │ │ └── package-info.java │ │ ├── negotiation │ │ │ ├── NegotiableNetworkComponent.java │ │ │ ├── NegotiatedNetworkComponent.java │ │ │ ├── NegotiationResult.java │ │ │ ├── NetworkComponentNegotiator.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── payload │ │ │ ├── AdvancedAddEntityPayload.java │ │ │ ├── AdvancedContainerSetDataPayload.java │ │ │ ├── AdvancedOpenScreenPayload.java │ │ │ ├── AuxiliaryLightDataPayload.java │ │ │ ├── ClientboundCustomSetTimePayload.java │ │ │ ├── CommonRegisterPayload.java │ │ │ ├── CommonVersionPayload.java │ │ │ ├── ConfigFilePayload.java │ │ │ ├── DinnerboneProtocolUtils.java │ │ │ ├── ExtensibleEnumAcknowledgePayload.java │ │ │ ├── ExtensibleEnumDataPayload.java │ │ │ ├── FeatureFlagAcknowledgePayload.java │ │ │ ├── FeatureFlagDataPayload.java │ │ │ ├── FrozenRegistryPayload.java │ │ │ ├── FrozenRegistrySyncCompletedPayload.java │ │ │ ├── FrozenRegistrySyncStartPayload.java │ │ │ ├── KnownRegistryDataMapsPayload.java │ │ │ ├── KnownRegistryDataMapsReplyPayload.java │ │ │ ├── MinecraftRegisterPayload.java │ │ │ ├── MinecraftUnregisterPayload.java │ │ │ ├── ModdedNetworkComponent.java │ │ │ ├── ModdedNetworkPayload.java │ │ │ ├── ModdedNetworkQueryComponent.java │ │ │ ├── ModdedNetworkQueryPayload.java │ │ │ ├── ModdedNetworkSetupFailedPayload.java │ │ │ ├── RecipeContentPayload.java │ │ │ ├── RegistryDataMapSyncPayload.java │ │ │ ├── SplitPacketPayload.java │ │ │ ├── SyncAttachmentsPayload.java │ │ │ └── package-info.java │ │ └── registration │ │ │ ├── ChannelAttributes.java │ │ │ ├── HandlerThread.java │ │ │ ├── ModdedConfigurationPayloadRegistration.java │ │ │ ├── ModdedPlayPayloadRegistration.java │ │ │ ├── NetworkChannel.java │ │ │ ├── NetworkPayloadSetup.java │ │ │ ├── NetworkRegistry.java │ │ │ ├── PayloadRegistrar.java │ │ │ ├── PayloadRegistration.java │ │ │ └── package-info.java │ │ ├── registries │ │ ├── BaseMappedRegistry.java │ │ ├── DataMapLoader.java │ │ ├── DataPackRegistriesHooks.java │ │ ├── DataPackRegistryEvent.java │ │ ├── DeferredBlock.java │ │ ├── DeferredHolder.java │ │ ├── DeferredItem.java │ │ ├── DeferredRegister.java │ │ ├── GameData.java │ │ ├── IRegistryExtension.java │ │ ├── ModifyRegistriesEvent.java │ │ ├── NeoForgeRegistries.java │ │ ├── NeoForgeRegistriesSetup.java │ │ ├── NeoForgeRegistryCallbacks.java │ │ ├── NewRegistryEvent.java │ │ ├── RegisterEvent.java │ │ ├── RegistryBuilder.java │ │ ├── RegistryManager.java │ │ ├── RegistrySnapshot.java │ │ ├── callback │ │ │ ├── AddCallback.java │ │ │ ├── BakeCallback.java │ │ │ ├── ClearCallback.java │ │ │ ├── RegistryCallback.java │ │ │ └── package-info.java │ │ ├── datamaps │ │ │ ├── AdvancedDataMapType.java │ │ │ ├── DataMapEntry.java │ │ │ ├── DataMapFile.java │ │ │ ├── DataMapType.java │ │ │ ├── DataMapValueMerger.java │ │ │ ├── DataMapValueRemover.java │ │ │ ├── DataMapsUpdatedEvent.java │ │ │ ├── IWithData.java │ │ │ ├── RegisterDataMapTypesEvent.java │ │ │ ├── builtin │ │ │ │ ├── AcceptableVillagerDistance.java │ │ │ │ ├── BiomeVillagerType.java │ │ │ │ ├── Compostable.java │ │ │ │ ├── FurnaceFuel.java │ │ │ │ ├── MonsterRoomMob.java │ │ │ │ ├── NeoForgeDataMaps.java │ │ │ │ ├── Oxidizable.java │ │ │ │ ├── ParrotImitation.java │ │ │ │ ├── RaidHeroGift.java │ │ │ │ ├── Strippable.java │ │ │ │ ├── VibrationFrequency.java │ │ │ │ ├── Waxable.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── holdersets │ │ │ ├── AndHolderSet.java │ │ │ ├── AnyHolderSet.java │ │ │ ├── CompositeHolderSet.java │ │ │ ├── HolderSetType.java │ │ │ ├── ICustomHolderSet.java │ │ │ ├── NotHolderSet.java │ │ │ ├── OrHolderSet.java │ │ │ └── package-info.java │ │ └── package-info.java │ │ ├── resource │ │ ├── ContextAwareReloadListener.java │ │ ├── EmptyPackResources.java │ │ ├── JarContentsPackResources.java │ │ ├── NeoForgeReloadListeners.java │ │ ├── ReloadListenerSort.java │ │ ├── ResourcePackLoader.java │ │ ├── VanillaServerListeners.java │ │ └── package-info.java │ │ ├── server │ │ ├── LanguageHook.java │ │ ├── ServerLifecycleHooks.java │ │ ├── command │ │ │ ├── CommandHelper.java │ │ │ ├── CommandUtils.java │ │ │ ├── ConfigCommand.java │ │ │ ├── DataComponentCommand.java │ │ │ ├── DimensionsCommand.java │ │ │ ├── DumpCommand.java │ │ │ ├── EntityCommand.java │ │ │ ├── EnumArgument.java │ │ │ ├── GenerateCommand.java │ │ │ ├── ModIdArgument.java │ │ │ ├── ModListCommand.java │ │ │ ├── NeoForgeCommand.java │ │ │ ├── TPSCommand.java │ │ │ ├── TagsCommand.java │ │ │ ├── TimeSpeedCommand.java │ │ │ ├── TrackCommand.java │ │ │ ├── generation │ │ │ │ ├── CoarseOnionIterator.java │ │ │ │ ├── GenerationBar.java │ │ │ │ ├── GenerationTask.java │ │ │ │ ├── OnionIterator.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ ├── console │ │ │ ├── ConsoleCommandCompleter.java │ │ │ ├── TerminalHandler.java │ │ │ └── package-info.java │ │ ├── dedicated │ │ │ ├── DedicatedLanServerPinger.java │ │ │ └── package-info.java │ │ ├── loading │ │ │ ├── ServerModLoader.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── permission │ │ │ ├── PermissionAPI.java │ │ │ ├── events │ │ │ │ ├── PermissionGatherEvent.java │ │ │ │ └── package-info.java │ │ │ ├── exceptions │ │ │ │ ├── UnregisteredPermissionException.java │ │ │ │ └── package-info.java │ │ │ ├── handler │ │ │ │ ├── DefaultPermissionHandler.java │ │ │ │ ├── IPermissionHandler.java │ │ │ │ ├── IPermissionHandlerFactory.java │ │ │ │ └── package-info.java │ │ │ ├── nodes │ │ │ │ ├── PermissionDynamicContext.java │ │ │ │ ├── PermissionDynamicContextKey.java │ │ │ │ ├── PermissionNode.java │ │ │ │ ├── PermissionType.java │ │ │ │ ├── PermissionTypes.java │ │ │ │ └── package-info.java │ │ │ └── package-info.java │ │ └── timings │ │ │ ├── ObjectTimings.java │ │ │ ├── TimeTracker.java │ │ │ └── package-info.java │ │ ├── transfer │ │ ├── CombinedResourceHandler.java │ │ ├── DelegatingResourceHandler.java │ │ ├── EmptyResourceHandler.java │ │ ├── IndexModifier.java │ │ ├── InfiniteResourceHandler.java │ │ ├── ItemAccessResourceHandler.java │ │ ├── RangedResourceHandler.java │ │ ├── ResourceHandler.java │ │ ├── ResourceHandlerUtil.java │ │ ├── ResourceStacksResourceHandler.java │ │ ├── StacksResourceHandler.java │ │ ├── TransferPreconditions.java │ │ ├── VoidingResourceHandler.java │ │ ├── access │ │ │ ├── HandlerItemAccess.java │ │ │ ├── InfiniteMaterialsItemAccess.java │ │ │ ├── ItemAccess.java │ │ │ ├── OneByOneItemAccess.java │ │ │ ├── PlayerItemAccess.java │ │ │ ├── StackItemAccess.java │ │ │ └── package-info.java │ │ ├── energy │ │ │ ├── DelegatingEnergyHandler.java │ │ │ ├── EmptyEnergyHandler.java │ │ │ ├── EnergyHandler.java │ │ │ ├── EnergyHandlerUtil.java │ │ │ ├── InfiniteEnergyHandler.java │ │ │ ├── ItemAccessEnergyHandler.java │ │ │ ├── LimitingEnergyHandler.java │ │ │ ├── SimpleEnergyHandler.java │ │ │ ├── VoidingEnergyHandler.java │ │ │ └── package-info.java │ │ ├── fluid │ │ │ ├── BucketResourceHandler.java │ │ │ ├── CauldronWrapper.java │ │ │ ├── DispenseFluidContainer.java │ │ │ ├── FluidResource.java │ │ │ ├── FluidStacksResourceHandler.java │ │ │ ├── FluidUtil.java │ │ │ ├── ItemAccessFluidHandler.java │ │ │ └── package-info.java │ │ ├── item │ │ │ ├── CarriedSlotWrapper.java │ │ │ ├── ComposterWrapper.java │ │ │ ├── ContainerOrHandler.java │ │ │ ├── ItemAccessItemHandler.java │ │ │ ├── ItemResource.java │ │ │ ├── ItemStackResourceHandler.java │ │ │ ├── ItemStacksResourceHandler.java │ │ │ ├── ItemUtil.java │ │ │ ├── LivingEntityEquipmentWrapper.java │ │ │ ├── PlayerInventoryWrapper.java │ │ │ ├── ResourceHandlerSlot.java │ │ │ ├── TransactionalRandom.java │ │ │ ├── VanillaContainerWrapper.java │ │ │ ├── VanillaInventoryCodeHooks.java │ │ │ ├── WorldlyContainerWrapper.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── resource │ │ │ ├── DataComponentHolderResource.java │ │ │ ├── RegisteredResource.java │ │ │ ├── Resource.java │ │ │ ├── ResourceStack.java │ │ │ └── package-info.java │ │ └── transaction │ │ │ ├── RootCommitJournal.java │ │ │ ├── SnapshotJournal.java │ │ │ ├── Transaction.java │ │ │ ├── TransactionContext.java │ │ │ ├── TransactionManager.java │ │ │ └── package-info.java │ │ └── world │ │ └── inventory │ │ ├── StackCopySlot.java │ │ └── package-info.java │ ├── resources │ ├── META-INF │ │ ├── MANIFEST.MF │ │ ├── accesstransformer.cfg │ │ ├── accesstransformergenerated.cfg │ │ ├── injected-interfaces.json │ │ └── services │ │ │ ├── net.neoforged.fml.IBindingsProvider │ │ │ └── net.neoforged.fml.startup.JUnitGameBootstrapper │ ├── assets │ │ └── neoforge │ │ │ ├── blockstates │ │ │ ├── dynbucket.json │ │ │ └── modeltest.json │ │ │ ├── lang │ │ │ ├── README.txt │ │ │ ├── cs_cz.json │ │ │ ├── da_dk.json │ │ │ ├── de_de.json │ │ │ ├── en_gb.json │ │ │ ├── en_us.json │ │ │ ├── eo_uy.json │ │ │ ├── es_es.json │ │ │ ├── et_ee.json │ │ │ ├── fr_fr.json │ │ │ ├── hu_hu.json │ │ │ ├── it_it.json │ │ │ ├── ja_jp.json │ │ │ ├── ko_kr.json │ │ │ ├── ms_my.json │ │ │ ├── nl_nl.json │ │ │ ├── pl_pl.json │ │ │ ├── pt_br.json │ │ │ ├── pt_pt.json │ │ │ ├── ro_ro.json │ │ │ ├── ru_ru.json │ │ │ ├── sk_sk.json │ │ │ ├── tr_tr.json │ │ │ ├── tt_ru.json │ │ │ ├── uk_ua.json │ │ │ ├── vi_vn.json │ │ │ ├── zh_cn.json │ │ │ └── zh_tw.json │ │ │ ├── models │ │ │ ├── block │ │ │ │ └── default.json │ │ │ └── item │ │ │ │ ├── bucket.json │ │ │ │ ├── bucket_drip.json │ │ │ │ ├── bucket_milk.json │ │ │ │ ├── default-tool.json │ │ │ │ └── default.json │ │ │ └── textures │ │ │ ├── block │ │ │ ├── milk_flowing.png │ │ │ ├── milk_flowing.png.mcmeta │ │ │ ├── milk_still.png │ │ │ └── milk_still.png.mcmeta │ │ │ ├── gui │ │ │ ├── experimental_warning.png │ │ │ ├── icons.png │ │ │ └── version_check_icons.png │ │ │ ├── item │ │ │ └── mask │ │ │ │ ├── bucket_fluid.png │ │ │ │ ├── bucket_fluid_cover.png │ │ │ │ ├── bucket_fluid_cover_drip.png │ │ │ │ └── bucket_fluid_drip.png │ │ │ └── white.png │ ├── data │ │ └── neoforge │ │ │ ├── damage_type │ │ │ └── poison.json │ │ │ └── loot_modifiers │ │ │ └── global_loot_modifiers.json │ ├── mcplogo.png │ ├── neoforge.mixins.json │ ├── neoforged_logo.png │ └── url.png │ └── templates │ ├── NeoForgeVersion.java │ ├── neoforge.mods.toml │ └── version.properties ├── testframework ├── build.gradle └── src │ └── main │ ├── java │ └── net │ │ └── neoforged │ │ └── testframework │ │ ├── DynamicTest.java │ │ ├── Test.java │ │ ├── TestFramework.java │ │ ├── TestListener.java │ │ ├── annotation │ │ ├── ForEachTest.java │ │ ├── OnInit.java │ │ ├── RegisterStructureTemplate.java │ │ ├── TestGroup.java │ │ ├── TestHolder.java │ │ ├── WithListener.java │ │ └── package-info.java │ │ ├── client │ │ ├── AbstractTestScreen.java │ │ ├── CommitBasedList.java │ │ ├── FrameworkClientImpl.java │ │ ├── TestScreen.java │ │ ├── TestsOverlay.java │ │ └── package-info.java │ │ ├── condition │ │ ├── TestEnabledIngredient.java │ │ ├── TestEnabledLootCondition.java │ │ └── package-info.java │ │ ├── conf │ │ ├── ClientConfiguration.java │ │ ├── Feature.java │ │ ├── FrameworkConfiguration.java │ │ ├── MissingDescriptionAction.java │ │ └── package-info.java │ │ ├── gametest │ │ ├── DynamicStructureTemplates.java │ │ ├── EmptyTemplate.java │ │ ├── ExtendedGameTestHelper.java │ │ ├── ExtendedSequence.java │ │ ├── GameTest.java │ │ ├── GameTestData.java │ │ ├── GameTestPlayer.java │ │ ├── ParametrizedGameTestSequence.java │ │ ├── StructureTemplateBuilder.java │ │ ├── TemplateBuilderHelper.java │ │ └── package-info.java │ │ ├── group │ │ ├── Group.java │ │ ├── Groupable.java │ │ └── package-info.java │ │ ├── impl │ │ ├── Commands.java │ │ ├── DefaultMarkdownFileSummaryDumper.java │ │ ├── EventListenerGroupImpl.java │ │ ├── FrameworkClient.java │ │ ├── FrameworkCollectors.java │ │ ├── GameTestHelperFactory.java │ │ ├── GameTestRegistration.java │ │ ├── LoggerSetup.java │ │ ├── MutableTestFramework.java │ │ ├── PlayerTestStore.java │ │ ├── ReflectionUtils.java │ │ ├── TestFrameworkImpl.java │ │ ├── TestFrameworkMod.java │ │ ├── package-info.java │ │ ├── packet │ │ │ ├── ChangeEnabledPayload.java │ │ │ ├── ChangeStatusPayload.java │ │ │ ├── TestFrameworkPayloadInitialization.java │ │ │ └── package-info.java │ │ ├── reg │ │ │ ├── RegistrationHelperImpl.java │ │ │ └── package-info.java │ │ └── test │ │ │ ├── AbstractTest.java │ │ │ ├── MethodBasedEventTest.java │ │ │ ├── MethodBasedGameTestTest.java │ │ │ ├── MethodBasedTest.java │ │ │ └── package-info.java │ │ ├── junit │ │ ├── EphemeralTestServerProvider.java │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── registration │ │ ├── DeferredAttachmentTypes.java │ │ ├── DeferredBlockBuilder.java │ │ ├── DeferredBlocks.java │ │ ├── DeferredEntityTypeBuilder.java │ │ ├── DeferredEntityTypes.java │ │ ├── DeferredItemBuilder.java │ │ ├── DeferredItems.java │ │ ├── RegistrationHelper.java │ │ └── package-info.java │ │ └── summary │ │ ├── DefaultLogSummaryDumper.java │ │ ├── FileSummaryDumper.java │ │ ├── FormattingUtil.java │ │ ├── GitHubActionsStepSummaryDumper.java │ │ ├── JUnitSummaryDumper.java │ │ ├── SummaryDumper.java │ │ ├── TestSummary.java │ │ ├── md │ │ ├── Alignment.java │ │ ├── Table.java │ │ ├── TableRow.java │ │ └── package-info.java │ │ └── package-info.java │ └── resources │ ├── META-INF │ └── neoforge.mods.toml │ └── assets │ └── testframework │ ├── lang │ └── en_us.json │ └── textures │ ├── block │ └── white.png │ └── gui │ └── sprites │ ├── background.png │ ├── background.png.mcmeta │ ├── background2.png │ ├── test_failed.png │ ├── test_not_processed.png │ └── test_passed.png └── tests ├── build.gradle └── src ├── generated └── resources │ ├── assets │ ├── custom_transformtype_test │ │ ├── blockstates │ │ │ └── item_hanger.json │ │ ├── items │ │ │ └── item_hanger.json │ │ └── models │ │ │ └── block │ │ │ └── item_hanger.json │ ├── data_gen_test │ │ ├── lang │ │ │ └── en_us.json │ │ └── sounds.json │ ├── minecraft │ │ ├── models │ │ │ └── item │ │ │ │ └── stick.json │ │ └── particles │ │ │ ├── cloud.json │ │ │ ├── dripping_lava.json │ │ │ ├── enchant.json │ │ │ └── fishing.json │ ├── neotests_block_entity_load │ │ ├── blockstates │ │ │ └── test_block.json │ │ ├── items │ │ │ └── test_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── test_block.json │ ├── neotests_bubble_column_test │ │ ├── blockstates │ │ │ ├── downward_bubble_column_sustaining_block.json │ │ │ └── upward_bubble_column_sustaining_block.json │ │ ├── items │ │ │ ├── downward_bubble_column_sustaining_block.json │ │ │ └── upward_bubble_column_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ ├── downward_bubble_column_sustaining_block.json │ │ │ └── upward_bubble_column_sustaining_block.json │ ├── neotests_custom_boat_type │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_custom_mob_bucket │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_custom_respawn_test │ │ ├── blockstates │ │ │ └── respawn.json │ │ ├── items │ │ │ └── respawn.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── respawn.json │ ├── neotests_custom_spawn_logic │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_explosion_resistance │ │ ├── blockstates │ │ │ └── resistant_block.json │ │ ├── items │ │ │ └── resistant_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── resistant_block.json │ ├── neotests_extending_connected_block │ │ ├── blockstates │ │ │ └── destroy_on_piston_move.json │ │ ├── items │ │ │ └── destroy_on_piston_move.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── destroy_on_piston_move.json │ ├── neotests_extending_piston_head │ │ ├── blockstates │ │ │ └── destroy_on_piston_move.json │ │ ├── items │ │ │ └── destroy_on_piston_move.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── destroy_on_piston_move.json │ ├── neotests_forge_spawn_egg_test │ │ ├── items │ │ │ └── test_spawn_egg.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── item │ │ │ └── test_spawn_egg.json │ ├── neotests_item_custom_rarity │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_key_mapping_test │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_level_sensitive_light │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_piston_event │ │ ├── blockstates │ │ │ └── shift_on_piston_move.json │ │ ├── items │ │ │ └── shift_on_piston_move.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── shift_on_piston_move.json │ ├── neotests_player_destroy │ │ ├── blockstates │ │ │ └── destroy_on_piston_move.json │ │ ├── items │ │ │ └── destroy_on_piston_move.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── destroy_on_piston_move.json │ ├── neotests_push_only_reaction │ │ ├── blockstates │ │ │ └── push_on_piston_move.json │ │ ├── items │ │ │ └── push_on_piston_move.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── push_on_piston_move.json │ ├── neotests_retracting_connected_block │ │ ├── blockstates │ │ │ └── destroy_on_piston_move.json │ │ ├── items │ │ │ └── destroy_on_piston_move.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── destroy_on_piston_move.json │ ├── neotests_snow_boots │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_sticky_blocks │ │ ├── blockstates │ │ │ ├── blue_block.json │ │ │ └── red_block.json │ │ ├── items │ │ │ ├── blue_block.json │ │ │ └── red_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ ├── blue_block.json │ │ │ └── red_block.json │ ├── neotests_survivability_bamboo_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_big_dripleaf_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_cactus_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_chorus_flower_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_chorus_plant_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_cocoa_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_dead_bush_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_hanging_mangrove_propagule_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_lily_pad_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_oak_sapling_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_pitcher_crop_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_red_mushroom_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_small_dripleaf_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_sugar_cane_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_survivability_wheat_test │ │ ├── blockstates │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── items │ │ │ └── super_sustaining_sustaining_block.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── super_sustaining_sustaining_block.json │ ├── neotests_test_model_generators │ │ ├── blockstates │ │ │ └── vanilla_model_gen_block.json │ │ ├── equipment │ │ │ └── vanilla_model_gen_item_head.json │ │ ├── items │ │ │ ├── vanilla_model_gen_block.json │ │ │ └── vanilla_model_gen_item.json │ │ └── models │ │ │ ├── block │ │ │ └── vanilla_model_gen_block.json │ │ │ └── item │ │ │ └── vanilla_model_gen_item.json │ ├── neotests_test_modify_default_components_event │ │ └── lang │ │ │ └── en_us.json │ ├── neotests_test_water_glass_face_removal │ │ ├── blockstates │ │ │ └── water_glass.json │ │ ├── items │ │ │ └── water_glass.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ └── water_glass.json │ ├── neotests_woodless_fence_gate │ │ ├── blockstates │ │ │ └── gate.json │ │ ├── items │ │ │ └── gate.json │ │ ├── lang │ │ │ └── en_us.json │ │ └── models │ │ │ └── block │ │ │ ├── gate.json │ │ │ ├── gate_open.json │ │ │ ├── gate_wall.json │ │ │ └── gate_wall_open.json │ ├── new_model_loader_test │ │ ├── blockstates │ │ │ ├── obj_block.json │ │ │ └── obj_block_same_part_names.json │ │ ├── items │ │ │ ├── obj_block.json │ │ │ └── obj_block_same_part_names.json │ │ └── models │ │ │ └── block │ │ │ ├── obj_block.json │ │ │ └── obj_block_same_part_names.json │ └── scaffolding_test │ │ ├── blockstates │ │ └── scaffolding_method_test.json │ │ └── items │ │ └── scaffolding_method_test.json │ ├── data │ ├── biome_modifiers_test │ │ ├── neoforge │ │ │ └── biome_modifier │ │ │ │ ├── add_basalt.json │ │ │ │ ├── add_magma_cubes.json │ │ │ │ ├── modify_badlands.json │ │ │ │ ├── remove_forest_skeletons.json │ │ │ │ └── remove_forest_trees.json │ │ └── worldgen │ │ │ └── placed_feature │ │ │ └── large_basalt_columns.json │ ├── custom_preset_editor_test │ │ └── worldgen │ │ │ └── world_preset │ │ │ └── custom_preset_editor_test.json │ ├── data_gen_test │ │ ├── advancement │ │ │ ├── obtain_dirt.json │ │ │ └── recipes │ │ │ │ ├── building_blocks │ │ │ │ ├── compound_ingredient_custom_types.json │ │ │ │ ├── compound_ingredient_only_vanilla.json │ │ │ │ ├── conditional.json │ │ │ │ ├── conditional2.json │ │ │ │ ├── conditional3.json │ │ │ │ ├── conditional4.json │ │ │ │ └── intersection_ingredient.json │ │ │ │ └── tools │ │ │ │ └── difference_ingredient.json │ │ ├── dimension │ │ │ └── test_level_stem.json │ │ ├── recipe │ │ │ ├── compound_ingredient_custom_types.json │ │ │ ├── compound_ingredient_only_vanilla.json │ │ │ ├── conditional.json │ │ │ ├── conditional2.json │ │ │ ├── conditional3.json │ │ │ ├── conditional4.json │ │ │ ├── difference_ingredient.json │ │ │ └── intersection_ingredient.json │ │ ├── tags │ │ │ └── block │ │ │ │ ├── test.json │ │ │ │ ├── thing │ │ │ │ ├── one.json │ │ │ │ ├── three.json │ │ │ │ └── two.json │ │ │ │ └── things.json │ │ └── worldgen │ │ │ └── noise_settings │ │ │ └── test_settings.json │ ├── minecraft │ │ ├── advancement │ │ │ ├── good_parent.json │ │ │ ├── obtain_diamond_block.json │ │ │ └── story │ │ │ │ └── root.json │ │ └── tags │ │ │ ├── block │ │ │ └── test_tag.json │ │ │ └── item │ │ │ ├── piglin_loved.json │ │ │ ├── planks.json │ │ │ └── test_tag.json │ ├── neoforge │ │ ├── data_maps │ │ │ ├── block │ │ │ │ ├── oxidizables.json │ │ │ │ └── waxables.json │ │ │ └── item │ │ │ │ └── compostables.json │ │ ├── loot_modifiers │ │ │ └── global_loot_modifiers.json │ │ ├── loot_table │ │ │ ├── test_loot_table_1.json │ │ │ ├── test_loot_table_2.json │ │ │ ├── test_loot_table_3.json │ │ │ └── test_loot_table_4.json │ │ └── recipe_priorities.json │ ├── neotests_biome_modifier_sync_test │ │ └── neoforge │ │ │ └── biome_modifier │ │ │ └── modify_taiga.json │ ├── neotests_block_tag_ingredient │ │ ├── advancement │ │ │ └── recipes │ │ │ │ └── misc │ │ │ │ └── block_tag.json │ │ └── recipe │ │ │ └── block_tag.json │ ├── neotests_conditional_datapack_entries │ │ └── damage_type │ │ │ ├── conditional_false.json │ │ │ ├── conditional_true.json │ │ │ └── unconditional.json │ ├── neotests_conditional_loot_table │ │ └── loot_table │ │ │ ├── table_1.json │ │ │ └── table_2.json │ ├── neotests_custom_predicate_test │ │ └── advancement │ │ │ └── named_item.json │ ├── neotests_data_map_merger │ │ └── data_maps │ │ │ └── item │ │ │ └── some_list.json │ ├── neotests_data_map_remover │ │ └── data_maps │ │ │ └── item │ │ │ └── some_map.json │ ├── neotests_data_map_test │ │ └── data_maps │ │ │ └── item │ │ │ └── some_data.json │ ├── neotests_data_map_update_event_test │ │ └── data_maps │ │ │ └── item │ │ │ └── weight.json │ ├── neotests_dmg_type_tests │ │ └── damage_type │ │ │ └── test.json │ ├── neotests_dynamic_reg_data_maps │ │ └── data_maps │ │ │ └── damage_type │ │ │ └── xp_grant.json │ ├── neotests_glm_test │ │ ├── enchantment │ │ │ └── smelt.json │ │ └── loot_modifiers │ │ │ └── dungeon_loot.json │ ├── neotests_mod_datapack │ │ └── advancement │ │ │ └── recipes │ │ │ └── misc │ │ │ └── test_advancement.json │ ├── neotests_partial_nbtingredient │ │ ├── advancement │ │ │ └── recipes │ │ │ │ └── misc │ │ │ │ └── partial_nbt.json │ │ └── recipe │ │ │ └── partial_nbt.json │ ├── neotests_recipe_priorities │ │ ├── advancement │ │ │ └── recipes │ │ │ │ └── misc │ │ │ │ └── higher_priority_test.json │ │ └── recipe │ │ │ └── higher_priority_test.json │ ├── neotests_reloadable_reg_data_maps │ │ └── data_maps │ │ │ └── loot_table │ │ │ └── effect_grant.json │ ├── neotests_strict_nbtingredient │ │ ├── advancement │ │ │ └── recipes │ │ │ │ └── misc │ │ │ │ └── strict_nbt.json │ │ └── recipe │ │ │ └── strict_nbt.json │ ├── neotests_test_conditional_recipe │ │ ├── advancement │ │ │ └── recipes │ │ │ │ └── misc │ │ │ │ └── always_disabled_recipe.json │ │ └── recipe │ │ │ └── always_disabled_recipe.json │ ├── neotests_test_flag_condition │ │ ├── advancement │ │ │ └── recipes │ │ │ │ └── misc │ │ │ │ └── diamonds_from_dirt.json │ │ └── recipe │ │ │ └── diamonds_from_dirt.json │ └── neotests_test_sized_ingredient │ │ ├── advancement │ │ └── recipes │ │ │ └── misc │ │ │ └── sized_ingredient_1.json │ │ └── recipe │ │ └── sized_ingredient_1.json │ ├── neotests_data_map_merger_second_layer │ └── data │ │ └── neotests_data_map_merger │ │ └── data_maps │ │ └── item │ │ └── some_list.json │ ├── neotests_data_map_remover_second_layer │ └── data │ │ └── neotests_data_map_remover │ │ └── data_maps │ │ └── item │ │ └── some_map.json │ ├── neotests_glm_test_smelt_glms │ └── data │ │ ├── neoforge │ │ └── loot_modifiers │ │ │ └── global_loot_modifiers.json │ │ └── neotests_glm_test │ │ └── loot_modifiers │ │ └── smelting.json │ ├── neotests_glm_test_wheat_seed_glms │ └── data │ │ ├── neoforge │ │ └── loot_modifiers │ │ │ └── global_loot_modifiers.json │ │ └── neotests_glm_test │ │ └── loot_modifiers │ │ └── wheat_harvest.json │ └── pack.mcmeta ├── junit ├── java │ └── net │ │ └── neoforged │ │ └── neoforge │ │ └── unittest │ │ ├── BlockEntityTypeValidBlocksEventTests.java │ │ ├── CommandSuggestionTests.java │ │ ├── ComponentHashingTest.java │ │ ├── CreativeTabOrderTest.java │ │ ├── CustomFeatureFlagsTest.java │ │ ├── EntityDataAccessorTests.java │ │ ├── EntityModelSerializationTest.java │ │ ├── ExtraCodecsTests.java │ │ ├── FluidIngredientTests.java │ │ ├── IngredientTests.java │ │ ├── InsertableLinkedOpenCustomHashSetTest.java │ │ ├── JarContentsPackResourcesTest.java │ │ ├── MutableHashedLinkedMapTest.java │ │ ├── StartupConfigTest.java │ │ ├── mixin │ │ ├── EntityDataAccessorTestsCorrectMixin.java │ │ └── EntityDataAccessorTestsWrongMixin.java │ │ └── transfer │ │ ├── CombinedResourceHandlerTest.java │ │ ├── EmptyResourceHandlerTest.java │ │ ├── EnergyTests.java │ │ ├── HandlerTestUtil.java │ │ ├── ItemAccessHandlerTest.java │ │ ├── ItemTests.java │ │ ├── MockResourceHandler.java │ │ ├── RangedResourceHandlerTest.java │ │ ├── ResourceHandlerUtilTest.java │ │ ├── TestResource.java │ │ ├── TransactionTests.java │ │ ├── TransactionalRandomTests.java │ │ ├── VoidingResourceHandlerTest.java │ │ ├── package-info.java │ │ └── resources │ │ └── ResourceTests.java └── resources │ ├── META-INF │ └── neoforge.mods.toml │ ├── feature_flags.json │ └── unittests.mixins.json └── main ├── java └── net │ └── neoforged │ └── neoforge │ ├── debug │ ├── ConditionalRecipeTest.java │ ├── CustomHelperTests.java │ ├── DebugEntryTests.java │ ├── EventTests.java │ ├── MixinTests.java │ ├── VanillaDataGenTest.java │ ├── attachment │ │ ├── AttachmentSyncTests.java │ │ ├── AttachmentTests.java │ │ └── package-info.java │ ├── block │ │ ├── BlockEntityTests.java │ │ ├── BlockEventTests.java │ │ ├── BlockPropertyTests.java │ │ ├── BlockTests.java │ │ ├── CanSustainPlantTests.java │ │ ├── OnDestroyedByPushReactionTests.java │ │ ├── PistonTests.java │ │ └── package-info.java │ ├── capabilities │ │ ├── FluidTemplatesTests.java │ │ ├── ItemEnergyTests.java │ │ ├── ItemInventoryTests.java │ │ ├── VanillaHandlersTests.java │ │ └── package-info.java │ ├── chat │ │ ├── CommandTests.java │ │ └── package-info.java │ ├── client │ │ ├── AnimationLoaderTests.java │ │ ├── ClientEventTests.java │ │ ├── ClientTests.java │ │ ├── CustomGlyphProviderTypeTest.java │ │ ├── DimensionTransitionScreenTests.java │ │ ├── GuiTests.java │ │ ├── MapDecorationRenderTests.java │ │ ├── TextureAtlasTests.java │ │ └── package-info.java │ ├── crafting │ │ ├── AnvilUpdateEventTests.java │ │ ├── CraftingEventTests.java │ │ ├── IngredientTests.java │ │ ├── RecipePrioritiesTest.java │ │ └── package-info.java │ ├── damagesource │ │ ├── DamageTypeTests.java │ │ └── package-info.java │ ├── data │ │ ├── CustomFeatureFlagsTests.java │ │ ├── DataMapTests.java │ │ ├── package-info.java │ │ └── registries │ │ │ ├── DatapackEntryTests.java │ │ │ └── package-info.java │ ├── effect │ │ ├── MobEffectTests.java │ │ └── package-info.java │ ├── enchantment │ │ ├── EnchantmentLevelTests.java │ │ └── package-info.java │ ├── entity │ │ ├── EntityDataSerializerTest.java │ │ ├── EntityEventTests.java │ │ ├── EntityTests.java │ │ ├── TradeTests.java │ │ ├── living │ │ │ ├── LivingEntityEventTests.java │ │ │ ├── LivingEntityTests.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ ├── player │ │ │ ├── AdvancementTests.java │ │ │ ├── PlayerEventTests.java │ │ │ ├── PlayerTests.java │ │ │ ├── PlayerXpTests.java │ │ │ └── package-info.java │ │ └── vehicle │ │ │ ├── CustomBoatTest.java │ │ │ └── package-info.java │ ├── fluid │ │ ├── ClientFluidTests.java │ │ ├── FluidEventTests.java │ │ ├── FluidTests.java │ │ ├── crafting │ │ │ ├── FluidIngredientTests.java │ │ │ └── package-info.java │ │ └── package-info.java │ ├── fml │ │ ├── MultipleEntrypointsTest.java │ │ └── package-info.java │ ├── item │ │ ├── ItemComponentTests.java │ │ ├── ItemEventTests.java │ │ ├── ItemTests.java │ │ └── package-info.java │ ├── level │ │ ├── LevelEventTests.java │ │ ├── LevelTests.java │ │ └── package-info.java │ ├── loot │ │ ├── GlobalLootModifiersTest.java │ │ ├── LootPoolTest.java │ │ └── package-info.java │ ├── mixin │ │ ├── InterfaceTestMixin.java │ │ ├── TestMixin.java │ │ └── package-info.java │ ├── package-info.java │ ├── registries │ │ ├── HolderSetTests.java │ │ └── package-info.java │ ├── registry │ │ ├── BiomeModifierSyncTest.java │ │ └── package-info.java │ ├── resources │ │ ├── BulkKnownPackTest.java │ │ ├── ModDatapackTest.java │ │ ├── OverlayTests.java │ │ ├── RichTranslationsTest.java │ │ └── package-info.java │ ├── structure │ │ ├── StructureTests.java │ │ └── package-info.java │ └── transfer │ │ ├── FluidUtilTests.java │ │ ├── VanillaHandlersTests.java │ │ └── package-info.java │ ├── eventtest │ └── internal │ │ ├── TestsMod.java │ │ └── package-info.java │ ├── oldtest │ ├── AddPackFinderEventTest.java │ ├── AttachmentSyncTest.java │ ├── ConfigUITest.java │ ├── CrashCallableTest.java │ ├── CreativeModeTabTest.java │ ├── CustomSoundTypeTest.java │ ├── DataGeneratorTest.java │ ├── DeferredRegistryTest.java │ ├── DeferredWorkQueueTest.java │ ├── FluidUtilTest.java │ ├── ManyMobEffectsTest.java │ ├── OrderedModLoadingTest.java │ ├── PermissionTest.java │ ├── PotionEventTest.java │ ├── RemoveTagDatagenTest.java │ ├── block │ │ ├── CustomBreakSoundTest.java │ │ ├── CustomHeadTest.java │ │ ├── CustomPlantTypeTest.java │ │ ├── CustomSignsTest.java │ │ ├── FlowerPotTest.java │ │ ├── FullPotsAccessorDemo.java │ │ ├── HideNeighborFaceTest.java │ │ ├── OnTreeGrowBlockTest.java │ │ ├── RedstoneSidedConnectivityTest.java │ │ ├── ScaffoldingTest.java │ │ ├── SlipperinessTest.java │ │ ├── ValidRailShapeTest.java │ │ └── package-info.java │ ├── chat │ │ ├── ClientCommandTest.java │ │ ├── EntitySelectorTest.java │ │ └── package-info.java │ ├── client │ │ ├── AmbientOcclusionElementsTest.java │ │ ├── CustomArmorModelTest.java │ │ ├── CustomColorResolverTest.java │ │ ├── CustomPresetEditorTest.java │ │ ├── CustomSpriteSourceTest.java │ │ ├── CustomTooltipTest.java │ │ ├── EmissiveElementsTest.java │ │ ├── RecipeSyncTest.java │ │ ├── TestScreen.java │ │ ├── model │ │ │ ├── CompositeModelTest.java │ │ │ ├── CustomItemDisplayContextTest.java │ │ │ ├── DynBucketModelTest.java │ │ │ ├── MegaModelTest.java │ │ │ ├── MultiLayerModelTest.java │ │ │ ├── NewModelLoaderTest.java │ │ │ ├── TRSRTransformerTest.java │ │ │ └── package-info.java │ │ ├── package-info.java │ │ └── rendering │ │ │ ├── CustomItemDecorationsTest.java │ │ │ ├── CustomParticleTypeTest.java │ │ │ ├── EntityRendererEventsTest.java │ │ │ ├── LinearTextTextureFilteringTest.java │ │ │ ├── NameplateRenderingEventTest.java │ │ │ ├── RenderLocalPlayerTest.java │ │ │ ├── ShaderResourcesTest.java │ │ │ ├── StencilEnableTest.java │ │ │ └── package-info.java │ ├── conditions │ │ ├── ConditionalCodecTest.java │ │ └── package-info.java │ ├── entity │ │ ├── CreateEntityClassificationTest.java │ │ ├── FishingBobberEventTest.java │ │ ├── PartEntityTest.java │ │ ├── SpawnPlacementTest.java │ │ ├── package-info.java │ │ └── player │ │ │ ├── ClientInformationUpdatedTest.java │ │ │ ├── ItemUseAnimationTest.java │ │ │ ├── PlayerNegotiationEventTest.java │ │ │ ├── PlayerSpawnPhantomsEventTest.java │ │ │ ├── TradeWithVillagerEventTest.java │ │ │ └── package-info.java │ ├── fluid │ │ ├── FluidTypeTest.java │ │ ├── MilkFluidTest.java │ │ ├── NewFluidTest.java │ │ └── package-info.java │ ├── item │ │ ├── CustomElytraTest.java │ │ ├── CustomFluidContainerTest.java │ │ ├── CustomShieldTest.java │ │ ├── EnderMaskTest.java │ │ ├── ItemStackedOnOtherTest.java │ │ ├── MayFlyAttributeTest.java │ │ ├── MusicDiscTest.java │ │ ├── RangedMobsUseModdedWeaponsTest.java │ │ ├── StopUsingItemTest.java │ │ └── package-info.java │ ├── misc │ │ ├── AnvilUpdateEventTest.java │ │ ├── ContainerTypeTest.java │ │ ├── DataPackRegistriesTest.java │ │ ├── FakePlayerTest.java │ │ ├── GameTestTest.java │ │ ├── GrindstoneEventTest.java │ │ ├── ModMismatchTest.java │ │ └── package-info.java │ ├── package-info.java │ ├── recipebook │ │ ├── RecipeBookExtensionTest.java │ │ ├── RecipeBookTestComponent.java │ │ ├── RecipeBookTestMenu.java │ │ ├── RecipeBookTestRecipe.java │ │ ├── RecipeBookTestRecipeSerializer.java │ │ ├── RecipeBookTestScreen.java │ │ └── package-info.java │ └── world │ │ ├── BiomeModifierTest.java │ │ ├── ChunkDataEventSaveNullWorldTest.java │ │ ├── ChunkEventLoadNewChunkTest.java │ │ ├── ChunkWatchEventTest.java │ │ ├── DimensionSettingsTest.java │ │ ├── ForgeChunkManagerTest.java │ │ ├── LoginPacketSplitTest.java │ │ ├── PotentialSpawnsEventTest.java │ │ ├── RaidEnumTest.java │ │ ├── ServerWorldCreationTest.java │ │ ├── StructureModifierTest.java │ │ ├── WorldgenRegistryDesyncTest.java │ │ ├── item │ │ ├── IngredientInvalidationTest.java │ │ └── package-info.java │ │ └── package-info.java │ └── unittest │ └── package-info.java └── resources ├── META-INF ├── enumextensions.json ├── jarjar │ ├── ForgeJiJTestMod-1.2.jar │ ├── ForgeJiJTestMod-1.5.jar │ ├── jijroot-1.3.jar │ └── metadata-broken.json └── neoforge.mods.toml ├── assets ├── advancementcriteriontest │ └── advancements │ │ └── root.json ├── advancements_pagination │ └── advancements │ │ ├── a1 │ │ └── root.json │ │ ├── a10 │ │ └── root.json │ │ ├── a11 │ │ └── root.json │ │ ├── a12 │ │ └── root.json │ │ ├── a13 │ │ └── root.json │ │ ├── a14 │ │ └── root.json │ │ ├── a15 │ │ └── root.json │ │ ├── a16 │ │ └── root.json │ │ ├── a17 │ │ └── root.json │ │ ├── a18 │ │ └── root.json │ │ ├── a19 │ │ └── root.json │ │ ├── a2 │ │ └── root.json │ │ ├── a20 │ │ └── root.json │ │ ├── a21 │ │ └── root.json │ │ ├── a22 │ │ └── root.json │ │ ├── a23 │ │ └── root.json │ │ ├── a24 │ │ └── root.json │ │ ├── a25 │ │ └── root.json │ │ ├── a26 │ │ └── root.json │ │ ├── a27 │ │ └── root.json │ │ ├── a28 │ │ └── root.json │ │ ├── a29 │ │ └── root.json │ │ ├── a3 │ │ └── root.json │ │ ├── a30 │ │ └── root.json │ │ ├── a31 │ │ └── root.json │ │ ├── a32 │ │ └── root.json │ │ ├── a33 │ │ └── root.json │ │ ├── a34 │ │ └── root.json │ │ ├── a35 │ │ └── root.json │ │ ├── a36 │ │ └── root.json │ │ ├── a37 │ │ └── root.json │ │ ├── a38 │ │ └── root.json │ │ ├── a39 │ │ └── root.json │ │ ├── a4 │ │ └── root.json │ │ ├── a40 │ │ └── root.json │ │ ├── a41 │ │ └── root.json │ │ ├── a42 │ │ └── root.json │ │ ├── a43 │ │ └── root.json │ │ ├── a44 │ │ └── root.json │ │ ├── a45 │ │ └── root.json │ │ ├── a46 │ │ └── root.json │ │ ├── a47 │ │ └── root.json │ │ ├── a48 │ │ └── root.json │ │ ├── a49 │ │ └── root.json │ │ ├── a5 │ │ └── root.json │ │ ├── a50 │ │ └── root.json │ │ ├── a51 │ │ └── root.json │ │ ├── a52 │ │ └── root.json │ │ ├── a53 │ │ └── root.json │ │ ├── a54 │ │ └── root.json │ │ ├── a55 │ │ └── root.json │ │ ├── a56 │ │ └── root.json │ │ ├── a57 │ │ └── root.json │ │ ├── a58 │ │ └── root.json │ │ ├── a59 │ │ └── root.json │ │ ├── a6 │ │ └── root.json │ │ ├── a60 │ │ └── root.json │ │ ├── a61 │ │ └── root.json │ │ ├── a62 │ │ └── root.json │ │ ├── a63 │ │ └── root.json │ │ ├── a64 │ │ └── root.json │ │ ├── a7 │ │ └── root.json │ │ ├── a8 │ │ └── root.json │ │ └── a9 │ │ └── root.json ├── ambient_occlusion_elements_test │ ├── blockstates │ │ ├── ambient_occlusion_no_shade.json │ │ ├── ambient_occlusion_shade.json │ │ ├── no_ambient_occlusion_no_shade.json │ │ └── no_ambient_occlusion_shade.json │ ├── models │ │ ├── block │ │ │ ├── ambient_occlusion_no_shade.json │ │ │ ├── ambient_occlusion_shade.json │ │ │ ├── no_ambient_occlusion_no_shade.json │ │ │ └── no_ambient_occlusion_shade.json │ │ └── item │ │ │ ├── ambient_occlusion_no_shade.json │ │ │ ├── ambient_occlusion_shade.json │ │ │ ├── no_ambient_occlusion_no_shade.json │ │ │ └── no_ambient_occlusion_shade.json │ └── textures │ │ └── block │ │ └── solid.png ├── collisionboxexeventtest │ └── blockstates │ │ └── box_block.json ├── composite_model_test │ ├── blockstates │ │ └── composite_block.json │ └── models │ │ ├── block │ │ └── composite_block.json │ │ └── item │ │ └── composite_block.json ├── config_test │ └── lang │ │ └── en_US.lang ├── configui │ └── lang │ │ └── en_us.json ├── constantloadingtest │ └── test │ │ └── _constants.json ├── crafting_system_test │ └── recipes │ │ ├── _factories.json │ │ ├── conditions_property_not_array.json │ │ └── oak_planks_from_logs.json ├── creative_mode_tab_test │ ├── lang │ │ └── en_us.json │ └── textures │ │ └── gui │ │ └── container │ │ └── creative_inventory │ │ └── custom_tabs.png ├── custom_color_resolver_test │ ├── blockstates │ │ └── test_block.json │ └── models │ │ └── block │ │ └── block.json ├── custom_elytra_test │ ├── models │ │ ├── equipment │ │ │ └── test_elytra.json │ │ └── item │ │ │ └── test_elytra.json │ └── textures │ │ ├── entity │ │ └── equipment │ │ │ └── wings │ │ │ └── custom_elytra.png │ │ └── item │ │ └── custom_elytra.png ├── custom_fluid_container_test │ └── items │ │ └── custom_fluid_container.json ├── custom_glyph_provider_type_test │ └── font │ │ └── vanilla.json ├── custom_head_test │ ├── blockstates │ │ ├── blaze_head.json │ │ └── blaze_wall_head.json │ ├── items │ │ └── blaze_head.json │ └── models │ │ └── item │ │ └── blaze_head.json ├── custom_preset_editor_test │ └── lang │ │ └── en_us.json ├── custom_signs_test │ ├── blockstates │ │ ├── test_hanging_sign.json │ │ ├── test_sign.json │ │ ├── test_wall_hanging_sign.json │ │ └── test_wall_sign.json │ ├── models │ │ └── block │ │ │ ├── test_hanging_sign.json │ │ │ └── test_sign.json │ └── textures │ │ └── entity │ │ └── signs │ │ ├── hanging │ │ └── test.png │ │ └── test.png ├── custom_sound_type_test │ ├── blockstates │ │ └── test_block.json │ ├── models │ │ ├── block │ │ │ └── test_block.json │ │ └── item │ │ │ └── test_block.json │ └── sounds.json ├── custom_sprite_source_test │ ├── models │ │ └── item │ │ │ └── test_item.json │ └── textures │ │ └── test_item.png ├── custom_sprite_test │ ├── blockstates │ │ └── custom_sprite_block.json │ └── models │ │ └── block │ │ └── custom_sprite_block.json ├── custom_tnt_test │ ├── blockstates │ │ └── test_tnt.json │ └── models │ │ └── item │ │ └── test_tnt.json ├── custom_tooltip_test │ └── textures │ │ └── gui │ │ └── sprites │ │ └── tooltip │ │ ├── test_background.png │ │ ├── test_background.png.mcmeta │ │ ├── test_frame.png │ │ └── test_frame.png.mcmeta ├── custom_transformtype_test │ └── textures │ │ └── item │ │ └── item_hanger.png ├── dyn_bucket_model_test │ ├── models │ │ └── item │ │ │ ├── drip_bucket.json │ │ │ └── lava_obsidian.json │ └── textures │ │ └── item │ │ ├── drip_bucket.png │ │ └── lava_obsidian.png ├── dynbuckettest │ └── blockstates │ │ └── simpletank.json ├── emissive_elements_test │ ├── blockstates │ │ └── emissive.json │ └── models │ │ ├── block │ │ └── emissive.json │ │ └── item │ │ └── emissive.json ├── entity_renderer_events_test │ └── textures │ │ └── entity │ │ └── test_entity.png ├── farmlandwatertest │ └── blockstates │ │ └── test_block.json ├── flower_pot_test │ ├── blockstates │ │ ├── test_flower_pot.json │ │ └── test_flower_pot_oak.json │ └── models │ │ └── item │ │ └── test_flower_pot.json ├── fluidadditionalfields │ ├── blockstates │ │ └── slime.json │ └── textures │ │ ├── slime_flow.png │ │ ├── slime_flow.png.mcmeta │ │ ├── slime_overlay.png │ │ ├── slime_still.png │ │ └── slime_still.png.mcmeta ├── fogcolorinsidematerialtest │ ├── blockstates │ │ └── slime.json │ ├── pack.mcmeta │ ├── test_fluid.json │ └── textures │ │ ├── slime_flow.png │ │ ├── slime_flow.png.mcmeta │ │ ├── slime_overlay.png │ │ ├── slime_still.png │ │ └── slime_still.png.mcmeta ├── forge │ ├── blockstates │ │ └── dynbottle.json │ ├── recipes │ │ ├── _constants.json │ │ ├── ore_shaped.json │ │ ├── shapeless.json │ │ ├── shapeless_constant.json │ │ ├── shapeless_damageable.json │ │ ├── shapeless_ore.json │ │ └── shapeless_wildcard.json │ └── textures │ │ └── blocks │ │ ├── milk_flow.png │ │ ├── milk_flow.png.mcmeta │ │ ├── milk_still.png │ │ └── milk_still.png.mcmeta ├── forge_chunk_manager_test │ ├── blockstates │ │ └── chunk_loader.json │ └── models │ │ ├── block │ │ └── chunk_loader.json │ │ └── item │ │ └── chunk_loader.json ├── forgeblockstatesloader │ └── models │ │ └── block │ │ └── wall_connect.json ├── forgedebugcustomslimeblock │ ├── blockstates │ │ └── custom_slime_block.json │ ├── lang │ │ └── en_US.lang │ ├── models │ │ ├── block │ │ │ ├── blue_slime_block.json │ │ │ └── obsidian_slime_block.json │ │ └── item │ │ │ ├── blue_slime_block.json │ │ │ └── obsidian_slime_block.json │ └── textures │ │ └── blocks │ │ ├── blue_slime_block.png │ │ └── obsidian_slime_block.png ├── forgedebugfluidplacement │ └── blockstates │ │ └── finite_fluid_block.json ├── forgedebugitemlayermodel │ └── blockstates │ │ └── test_item.json ├── forgedebugitemtile │ └── blockstates │ │ └── custom_model_block.json ├── forgedebugmodelanimation │ ├── armatures │ │ └── block │ │ │ ├── engine_ring.json │ │ │ └── rotatest.json │ ├── asms │ │ └── block │ │ │ ├── chest.json │ │ │ ├── engine.json │ │ │ ├── engine2.json │ │ │ └── rotatest.json │ ├── blockstates │ │ ├── rotatest.json │ │ └── test_animation_block.json │ └── models │ │ └── block │ │ ├── engine.json │ │ ├── engine_ring.json │ │ └── rotatest.json ├── forgedebugmodelfluid │ └── blockstates │ │ └── test_fluid_block.json ├── forgedebugmodelloaderregistry │ ├── blockstates │ │ ├── custom_model_block.json │ │ ├── obj_custom_data_block.json │ │ ├── obj_direction_block.json │ │ ├── obj_direction_eye.json │ │ ├── obj_dynamic_eye.json │ │ ├── obj_tesseract_block.json │ │ ├── obj_vertex_coloring1.json │ │ └── obj_vertex_coloring2.json │ ├── models │ │ └── block │ │ │ ├── chest.b3d │ │ │ ├── direction_test.mtl │ │ │ ├── direction_test.obj │ │ │ ├── eye.mtl │ │ │ ├── eye.obj │ │ │ ├── fancy_fence.mtl │ │ │ ├── fancy_fence.obj │ │ │ ├── tesseract.mtl │ │ │ ├── tesseract.obj │ │ │ ├── untitled2.b3d │ │ │ ├── vertex_coloring.mtl │ │ │ └── vertex_coloring.obj │ └── textures │ │ ├── direction_test_arrow.png │ │ ├── direction_test_arrow_top.png │ │ ├── direction_test_back.png │ │ ├── direction_test_front.png │ │ ├── eye.png │ │ ├── eye128.png │ │ ├── texture.png │ │ └── white.png ├── forgedebugmultilayermodel │ └── disabled │ │ ├── blockstates │ │ └── test_layer_block.json │ │ └── models │ │ ├── block │ │ └── test_layer_block.json │ │ └── item │ │ └── test_layer_block.json ├── forgedebugnobedsleeping │ └── models │ │ └── item │ │ └── sleeping_pill.json ├── full_pots_accessor_demo │ ├── blockstates │ │ └── diorite_pot.json │ └── models │ │ └── block │ │ └── diorite_pot.json ├── furnacefuelburntimeeventtest │ └── models │ │ └── item │ │ ├── flammable_gold_shovel.json │ │ └── unburnable_wood_shovel.json ├── hide_neighbor_face_test │ ├── blockstates │ │ └── glass_slab.json │ └── models │ │ └── block │ │ ├── glass_slab.json │ │ └── glass_slab_top.json ├── horse_armor_test │ ├── lang │ │ └── en_US.lang │ ├── models │ │ └── item │ │ │ └── test_armor.json │ └── textures │ │ ├── entity │ │ └── horse │ │ │ └── armor │ │ │ └── test.png │ │ └── items │ │ └── test_armor.png ├── item_can_destroy_blocks_in_creative_test │ └── models │ │ └── item │ │ └── item_test.json ├── item_model_conflict_test │ ├── blockstates │ │ └── test.json │ └── models │ │ ├── block │ │ └── test.json │ │ └── item │ │ └── test.json ├── item_model_generation_test │ ├── models │ │ └── item │ │ │ ├── animation_test.json │ │ │ ├── intersection_test.json │ │ │ ├── opacity_test.json │ │ │ ├── overlap_test.json │ │ │ └── pattern_test.json │ └── textures │ │ └── items │ │ ├── animation_test.png │ │ ├── animation_test.png.mcmeta │ │ ├── intersection_test.png │ │ ├── opacity_test.png │ │ ├── overlap_test.png │ │ └── pattern_test.png ├── level_sensitive_light_block_test │ ├── blockstates │ │ └── light_block.json │ └── models │ │ └── item │ │ └── light_block.json ├── loot_context_tweaks_test │ └── advancements │ │ └── test │ │ └── root.json ├── loottable_load_event_test │ └── loot_tables │ │ └── chests │ │ └── custom_spawn_bonus_chest.json ├── mega_model_test │ ├── blockstates │ │ └── test_block.json │ └── models │ │ ├── block │ │ └── test_block.json │ │ └── item │ │ └── test_block.json ├── minecraft │ └── atlases │ │ └── blocks.json ├── music_disc_test │ ├── lang │ │ └── en_us.json │ ├── models │ │ └── item │ │ │ └── test_music_disc.json │ └── sounds.json ├── nbtsharetagitemtest │ └── models │ │ └── item │ │ └── nbt_share_tag_item.json ├── neotests │ └── lang │ │ └── fr_fr.json ├── neotests_anim_loader_test │ ├── items │ │ └── test_item.json │ └── neoforge │ │ └── animations │ │ └── entity │ │ └── empty_animation.json ├── neotests_audio_stream_test │ ├── sounds.json │ └── sounds │ │ └── empty.ogg ├── neotests_custom_equipment_layer_type │ └── textures │ │ └── entity │ │ └── equipment │ │ └── neotests │ │ └── layer_type │ │ └── equipment_texture_present.png ├── neotests_custom_mob_bucket │ ├── models │ │ └── item │ │ │ └── cow_bucket.json │ └── textures │ │ └── item │ │ └── cow_bucket.png ├── neotests_default_sprite_metadata_sections │ └── textures │ │ └── block │ │ ├── resource.png │ │ └── resource.png.mcmeta ├── neotests_dir_list_absent │ └── textures │ │ └── test │ │ └── dir_list_test_absent.png ├── neotests_dir_list_present │ └── textures │ │ └── test │ │ └── dir_list_test_present.png ├── neotests_test_material_atlas │ └── atlases │ │ └── material_test.json ├── neotests_test_model_generators │ └── textures │ │ ├── block │ │ └── vanilla_model_gen_block.png │ │ ├── entity │ │ └── equipment │ │ │ └── humanoid │ │ │ └── vanilla_model_gen_item_head.png │ │ └── item │ │ └── vanilla_model_gen_item.png ├── new_fluid_test │ ├── blockstates │ │ ├── fluidloggable_block.json │ │ └── test_fluid_block.json │ └── models │ │ ├── block │ │ └── test_fluid.json │ │ └── item │ │ └── test_fluid_bucket.json ├── new_model_loader_test │ ├── models │ │ └── item │ │ │ ├── custom_loader.json │ │ │ ├── custom_transforms.json │ │ │ ├── custom_vanilla_loader.json │ │ │ ├── item_direction.mtl │ │ │ ├── item_direction.obj │ │ │ ├── obj_block.json │ │ │ ├── sugar_glider.mtl │ │ │ ├── sugar_glider.obj │ │ │ └── sugar_glider_same_part_names.obj │ └── textures │ │ └── item │ │ └── qr.png ├── on_tree_grow_block_test │ ├── blockstates │ │ ├── test_dirt.json │ │ └── test_grass_block.json │ ├── models │ │ ├── block │ │ │ ├── test_dirt.json │ │ │ └── test_grass_block.json │ │ └── item │ │ │ ├── test_dirt.json │ │ │ └── test_grass_block.json │ └── textures │ │ └── blocks │ │ ├── test_dirt.png │ │ ├── test_grass_block_side.png │ │ ├── test_grass_block_side_overlay.png │ │ └── test_grass_block_top.png ├── onitemusefirsttest │ └── models │ │ └── item │ │ └── test_item.json ├── oredict_predicate │ └── advancements │ │ └── recipes │ │ └── wood_unlock_tnt.json ├── professiontest │ └── textures │ │ └── entity │ │ ├── test_villager.png │ │ └── zombie_test_villager.png ├── recipe_book_extension_test │ └── textures │ │ └── gui │ │ └── container │ │ └── recipe_book_test.png ├── recipetest │ └── recipes │ │ ├── tool_complex.json │ │ └── tool_simple.json ├── redstone_sided_connectivity_test │ ├── blockstates │ │ └── test_east_redstone_connect.json │ ├── lang │ │ └── en_us.json │ └── models │ │ ├── block │ │ └── test_east_redstone_connect.json │ │ └── item │ │ └── test_east_redstone_connect.json ├── rich_translations_test │ └── lang │ │ └── en_us.json ├── shader_resources_test │ └── shaders │ │ ├── core │ │ ├── vertex_cubemap.fsh │ │ └── vertex_cubemap.vsh │ │ └── include │ │ └── cubemap_includes.glsl ├── shield_test │ ├── lang │ │ └── en_US.lang │ └── models │ │ └── item │ │ ├── diamond_shield.json │ │ └── diamond_shield_blocking.json ├── testobjmodelmod │ └── models │ │ ├── sample_model.mtl │ │ └── sample_model.obj ├── trsr_transformer_test │ ├── blockstates │ │ └── test.json │ └── models │ │ └── block │ │ └── test.json ├── valid_railshape_test │ ├── blockstates │ │ └── rail_slope.json │ └── models │ │ └── item │ │ └── rail_slope.json └── wrenchrotatedebug │ ├── models │ └── item │ │ └── test_wrench.json │ └── textures │ └── items │ └── test_wrench.png ├── blah.json ├── conditional_overlays_disabled └── data │ └── conditional_overlays_test │ └── tags │ └── block │ └── overlay_disabled.json ├── conditional_overlays_enabled └── data │ └── conditional_overlays_test │ └── tags │ └── block │ └── overlay_enabled.json ├── data ├── conditional_overlays_test │ └── tags │ │ └── blocks │ │ ├── overlay_disabled.json │ │ └── overlay_enabled.json ├── custom_tooltip_test │ └── recipes │ │ └── custom_item.json ├── data_pack_registries_test │ ├── data_pack_registries_test │ │ ├── syncable │ │ │ └── test.json │ │ └── unsyncable │ │ │ └── test.json │ └── tags │ │ └── data_pack_registries_test │ │ ├── syncable │ │ └── test.json │ │ └── unsyncable │ │ └── test.json ├── dimension_seed_test │ └── dimension │ │ ├── fixed_seed_dimension.json │ │ └── server_seed_dimension.json ├── gametest_test │ └── structure │ │ ├── empty3x3x3.nbt │ │ ├── gametesttest.teststone.nbt │ │ └── gametesttest.testwood.nbt ├── global_loot_test │ └── loot_modifiers │ │ └── silk_touch_bamboo.json ├── minecraft │ └── tags │ │ ├── blocks │ │ └── rails.json │ │ └── worldgen │ │ └── world_preset │ │ └── normal.json ├── music_disc_test │ └── jukebox_song │ │ └── test_song.json ├── neoforge │ ├── advancement │ │ └── dummy_parent.json │ ├── forge │ │ └── biome_modifier │ │ │ ├── test_datapackreg_conditions.json │ │ │ └── test_datapackreg_conditions_error.json-disabled │ └── item_tier_ordering.json ├── neoforge_overlays_test │ └── tags │ │ └── block │ │ └── must_be_overlayed.json ├── on_tree_grow_block_test │ └── tags │ │ └── blocks │ │ └── dirt.json ├── pack_overlays_test │ └── tags │ │ └── block │ │ └── must_be_overlayed.json ├── recipe_book_extension_test │ ├── advancement │ │ └── recipes │ │ │ └── recipe_book_extension_advancment.json │ └── recipe │ │ ├── recipe_book_extension_recipe_1.json │ │ ├── recipe_book_extension_recipe_2.json │ │ ├── recipe_book_extension_recipe_3.json │ │ ├── recipe_book_extension_recipe_4.json │ │ └── recipe_book_extension_recipe_5.json ├── recipe_extensions │ └── recipes │ │ └── smelting_multi_output.json ├── server_world_creation_test │ ├── dimension │ │ └── server_world_creation_test.json │ ├── dimension_type │ │ └── server_world_creation_test.json │ └── worldgen │ │ └── noise_settings │ │ └── server_world_creation_test_noise.json └── valid_railshape_test │ └── loot_tables │ └── blocks │ └── rail_slope.json ├── feature_flag_test_packs ├── flag_test_pack │ └── pack.mcmeta ├── flag_test_pack_0 │ └── pack.mcmeta ├── flag_test_pack_1 │ └── pack.mcmeta ├── flag_test_pack_2 │ └── pack.mcmeta ├── flag_test_pack_3 │ └── pack.mcmeta ├── flag_test_pack_4 │ └── pack.mcmeta ├── flag_test_pack_5 │ └── pack.mcmeta └── gating_test_pack │ └── pack.mcmeta ├── game_test_feature_flags.json ├── mod.jar ├── neoforge_overlays_test └── data │ └── neoforge_overlays_test │ └── tags │ └── block │ └── must_be_overlayed.json ├── neotests.mixins.json ├── pack_overlays_test └── data │ └── pack_overlays_test │ └── tags │ └── block │ └── must_be_overlayed.json ├── test_always_enabled_resource_pack ├── assets │ └── minecraft │ │ └── blockstates │ │ └── dirt.json └── pack.mcmeta ├── test_disabled_data_pack ├── data │ └── test_disabled_data_pack │ │ └── tags │ │ └── block │ │ └── dirt.json └── pack.mcmeta ├── test_disabled_resource_pack ├── assets │ └── minecraft │ │ └── blockstates │ │ └── dirt.json └── pack.mcmeta └── test_enabled_data_pack ├── data └── test_disabled_data_pack │ └── tags │ └── block │ └── dirt.json └── pack.mcmeta /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/issue_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/ISSUE_TEMPLATE/issue_report.md -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/stale.yml -------------------------------------------------------------------------------- /.github/workflows/build-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/workflows/build-prs.yml -------------------------------------------------------------------------------- /.github/workflows/check-local-changes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/workflows/check-local-changes.yml -------------------------------------------------------------------------------- /.github/workflows/publish-jcc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/workflows/publish-jcc.yml -------------------------------------------------------------------------------- /.github/workflows/publish-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/workflows/publish-prs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.github/workflows/test-prs.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/.idea/icon.svg -------------------------------------------------------------------------------- /CREDITS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/CREDITS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README-LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/README-LICENSE.md -------------------------------------------------------------------------------- /codeformat/HEADER.txt: -------------------------------------------------------------------------------- 1 | Copyright (c) NeoForged and contributors 2 | SPDX-License-Identifier: LGPL-2.1-only -------------------------------------------------------------------------------- /codeformat/formatter-config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/codeformat/formatter-config.xml -------------------------------------------------------------------------------- /coremods/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/coremods/build.gradle -------------------------------------------------------------------------------- /coremods/src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Automatic-Module-Name: neoforge.coremods 3 | FMLModType: LIBRARY 4 | -------------------------------------------------------------------------------- /crowdin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/crowdin.yml -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/NEOGAMETESTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/NEOGAMETESTS.md -------------------------------------------------------------------------------- /docs/PORTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/PORTING.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/SUPPORT.md -------------------------------------------------------------------------------- /docs/TESTFRAMEWORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/TESTFRAMEWORK.md -------------------------------------------------------------------------------- /docs/assets/installer_profile_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/assets/installer_profile_icon.png -------------------------------------------------------------------------------- /docs/assets/neoforged.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/assets/neoforged.ico -------------------------------------------------------------------------------- /docs/assets/neoforged_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/docs/assets/neoforged_logo.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/gradlew.bat -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/buffers/GpuBuffer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/buffers/GpuBuffer.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/DirectStateAccess.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/DirectStateAccess.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/GlCommandEncoder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/GlCommandEncoder.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/GlConst.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/GlConst.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/GlDevice.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/GlDevice.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/GlRenderPass.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/GlRenderPass.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/GlStateManager.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/GlStateManager.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/opengl/GlTexture.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/opengl/GlTexture.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/pipeline/MainTarget.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/pipeline/MainTarget.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/pipeline/RenderPipeline.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/pipeline/RenderPipeline.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/pipeline/RenderTarget.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/pipeline/RenderTarget.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/pipeline/TextureTarget.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/pipeline/TextureTarget.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/platform/DestFactor.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/platform/DestFactor.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/platform/SourceFactor.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/platform/SourceFactor.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/platform/Window.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/platform/Window.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/shaders/ShaderType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/shaders/ShaderType.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/shaders/UniformType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/shaders/UniformType.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/systems/CommandEncoder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/systems/CommandEncoder.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/systems/RenderPass.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/systems/RenderPass.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/systems/RenderSystem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/systems/RenderSystem.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/textures/AddressMode.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/textures/AddressMode.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/textures/GpuTexture.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/textures/GpuTexture.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/textures/TextureFormat.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/textures/TextureFormat.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/vertex/VertexConsumer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/vertex/VertexConsumer.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/blaze3d/vertex/VertexFormat.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/blaze3d/vertex/VertexFormat.java.patch -------------------------------------------------------------------------------- /patches/com/mojang/math/Transformation.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/com/mojang/math/Transformation.java.patch -------------------------------------------------------------------------------- /patches/mcp/client/Start.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/mcp/client/Start.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/CrashReport.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/CrashReport.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/CrashReportCategory.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/CrashReportCategory.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/FileUtil.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/FileUtil.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/ReportType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/ReportType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/SharedConstants.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/SharedConstants.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/Util.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/Util.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/advancements/Advancement.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/advancements/Advancement.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/Camera.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/Camera.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/ClientBrandRetriever.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/ClientBrandRetriever.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/ClientRecipeBook.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/ClientRecipeBook.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/GameNarrator.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/GameNarrator.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/KeyMapping.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/KeyMapping.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/KeyboardHandler.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/KeyboardHandler.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/Minecraft.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/Minecraft.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/MouseHandler.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/MouseHandler.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/Options.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/Options.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/Screenshot.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/Screenshot.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/ToggleKeyMapping.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/ToggleKeyMapping.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/data/Main.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/data/Main.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/Font.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/Font.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/Gui.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/Gui.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/GuiGraphics.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/GuiGraphics.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/components/Button.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/components/Button.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/components/EditBox.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/components/EditBox.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/render/GuiRenderer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/render/GuiRenderer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/screens/ChatScreen.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/screens/ChatScreen.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/gui/screens/Screen.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/gui/screens/Screen.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/main/Main.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/main/Main.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/model/HumanoidModel.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/model/HumanoidModel.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/model/Model.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/model/Model.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/model/geom/ModelLayers.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/model/geom/ModelLayers.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/multiplayer/PlayerInfo.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/multiplayer/PlayerInfo.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/multiplayer/ServerData.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/multiplayer/ServerData.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/particle/Particle.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/particle/Particle.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/player/LocalPlayer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/player/LocalPlayer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/renderer/GameRenderer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/renderer/GameRenderer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/renderer/LevelRenderer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/renderer/LevelRenderer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/renderer/LightTexture.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/renderer/LightTexture.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/renderer/MapRenderer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/renderer/MapRenderer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/renderer/RenderBuffers.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/renderer/RenderBuffers.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/renderer/Sheets.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/renderer/Sheets.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/server/LanServerPinger.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/server/LanServerPinger.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/sounds/MusicManager.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/sounds/MusicManager.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/client/sounds/SoundEngine.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/client/sounds/SoundEngine.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/commands/Commands.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/commands/Commands.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/DefaultedMappedRegistry.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/DefaultedMappedRegistry.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/Holder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/Holder.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/HolderLookup.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/HolderLookup.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/HolderSet.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/HolderSet.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/MappedRegistry.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/MappedRegistry.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/NonNullList.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/NonNullList.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/Registry.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/Registry.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/RegistrySetBuilder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/RegistrySetBuilder.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/core/registries/Registries.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/core/registries/Registries.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/DataGenerator.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/DataGenerator.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/DataProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/DataProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/HashCache.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/HashCache.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/Main.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/Main.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/loot/LootTableProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/loot/LootTableProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/recipes/RecipeOutput.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/recipes/RecipeOutput.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/recipes/RecipeProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/recipes/RecipeProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/tags/BiomeTagsProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/tags/BiomeTagsProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/tags/FluidTagsProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/tags/FluidTagsProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/tags/KeyTagProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/tags/KeyTagProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/tags/PoiTypeTagsProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/tags/PoiTypeTagsProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/tags/TagAppender.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/tags/TagAppender.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/data/tags/TagsProvider.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/data/tags/TagsProvider.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/locale/Language.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/locale/Language.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/nbt/CompoundTag.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/nbt/CompoundTag.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/nbt/ListTag.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/nbt/ListTag.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/nbt/NbtAccounter.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/nbt/NbtAccounter.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/nbt/NbtIo.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/nbt/NbtIo.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/nbt/StringTag.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/nbt/StringTag.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/CompressionEncoder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/CompressionEncoder.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/Connection.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/Connection.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/ConnectionProtocol.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/ConnectionProtocol.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/FriendlyByteBuf.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/FriendlyByteBuf.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/PacketBundleUnpacker.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/PacketBundleUnpacker.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/PacketEncoder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/PacketEncoder.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/PacketProcessor.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/PacketProcessor.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/chat/ClickEvent.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/chat/ClickEvent.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/chat/SignableCommand.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/chat/SignableCommand.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/codec/ByteBufCodecs.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/codec/ByteBufCodecs.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/protocol/BundlePacket.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/protocol/BundlePacket.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/network/protocol/BundlerInfo.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/network/protocol/BundlerInfo.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/resources/FileToIdConverter.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/resources/FileToIdConverter.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/resources/HolderSetCodec.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/resources/HolderSetCodec.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/resources/RegistryDataLoader.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/resources/RegistryDataLoader.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/resources/RegistryOps.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/resources/RegistryOps.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/resources/ResourceKey.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/resources/ResourceKey.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/resources/ResourceLocation.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/resources/ResourceLocation.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/Bootstrap.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/Bootstrap.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/Eula.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/Eula.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/Main.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/Main.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/MinecraftServer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/MinecraftServer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/PlayerAdvancements.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/PlayerAdvancements.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/WorldLoader.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/WorldLoader.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/commands/ReloadCommand.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/commands/ReloadCommand.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/dedicated/Settings.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/dedicated/Settings.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/gui/MinecraftServerGui.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/gui/MinecraftServerGui.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/ChunkMap.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/ChunkMap.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/ServerChunkCache.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/ServerChunkCache.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/ServerEntity.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/ServerEntity.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/ServerLevel.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/ServerLevel.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/ServerPlayer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/ServerPlayer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/TicketType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/TicketType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/level/WorldGenRegion.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/level/WorldGenRegion.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/packs/PackType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/packs/PackType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/packs/repository/Pack.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/packs/repository/Pack.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/players/PlayerList.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/players/PlayerList.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/rcon/RconConsoleSource.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/rcon/RconConsoleSource.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/server/rcon/thread/RconClient.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/server/rcon/thread/RconClient.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/stats/RecipeBookSettings.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/stats/RecipeBookSettings.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/stats/StatsCounter.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/stats/StatsCounter.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/BlockTags.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/BlockTags.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/FluidTags.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/FluidTags.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/ItemTags.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/ItemTags.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/TagBuilder.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/TagBuilder.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/TagEntry.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/TagEntry.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/TagFile.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/TagFile.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/tags/TagLoader.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/tags/TagLoader.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/SpawnUtil.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/SpawnUtil.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/TriState.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/TriState.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/context/ContextKeySet.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/context/ContextKeySet.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/context/ContextMap.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/context/ContextMap.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/datafix/DataFixers.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/datafix/DataFixers.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/datafix/schemas/V2832.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/datafix/schemas/V2832.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/util/random/WeightedList.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/util/random/WeightedList.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/SimpleContainer.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/SimpleContainer.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/effect/MobEffect.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/effect/MobEffect.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/effect/PoisonMobEffect.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/effect/PoisonMobEffect.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/Entity.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/Entity.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/EntityType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/EntityType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/ExperienceOrb.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/ExperienceOrb.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/Leashable.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/Leashable.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/LightningBolt.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/LightningBolt.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/LivingEntity.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/LivingEntity.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/Mob.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/Mob.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/MobCategory.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/MobCategory.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/Shearable.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/Shearable.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/SpawnPlacements.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/SpawnPlacements.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/TamableAnimal.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/TamableAnimal.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/ai/behavior/Swim.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/ai/behavior/Swim.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Animal.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Animal.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Bee.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Bee.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Cat.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Cat.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Fox.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Fox.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Ocelot.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Ocelot.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Parrot.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Parrot.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Pig.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Pig.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/Rabbit.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/Rabbit.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/SnowGolem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/SnowGolem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/animal/wolf/Wolf.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/animal/wolf/Wolf.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/item/ItemEntity.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/item/ItemEntity.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Bogged.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Bogged.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/EnderMan.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/EnderMan.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Evoker.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Evoker.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Husk.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Husk.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Monster.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Monster.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Pillager.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Pillager.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Ravager.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Ravager.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Shulker.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Shulker.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Skeleton.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Skeleton.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Slime.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Slime.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/monster/Zombie.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/monster/Zombie.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/npc/CatSpawner.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/npc/CatSpawner.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/npc/Villager.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/npc/Villager.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/npc/VillagerType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/npc/VillagerType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/player/Abilities.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/player/Abilities.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/player/Inventory.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/player/Inventory.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/player/Player.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/player/Player.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/raid/Raid.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/raid/Raid.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/entity/vehicle/Minecart.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/entity/vehicle/Minecart.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/flag/FeatureFlag.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/flag/FeatureFlag.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/flag/FeatureFlagSet.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/flag/FeatureFlagSet.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/flag/FeatureFlags.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/flag/FeatureFlags.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/inventory/AnvilMenu.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/inventory/AnvilMenu.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/inventory/ArmorSlot.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/inventory/ArmorSlot.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/inventory/BeaconMenu.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/inventory/BeaconMenu.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/inventory/MenuType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/inventory/MenuType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/inventory/ResultSlot.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/inventory/ResultSlot.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/inventory/Slot.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/inventory/Slot.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/ArrowItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/ArrowItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/AxeItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/AxeItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/BlockItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/BlockItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/BoneMealItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/BoneMealItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/BowItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/BowItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/BrushItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/BrushItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/BucketItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/BucketItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/BundleItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/BundleItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/CreativeModeTab.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/CreativeModeTab.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/CrossbowItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/CrossbowItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/DyeColor.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/DyeColor.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/FireChargeItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/FireChargeItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/FishingRodItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/FishingRodItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/FlintAndSteelItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/FlintAndSteelItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/HoeItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/HoeItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/HoneycombItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/HoneycombItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/Item.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/Item.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/ItemDisplayContext.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/ItemDisplayContext.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/ItemStack.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/ItemStack.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/ItemUseAnimation.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/ItemUseAnimation.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/Items.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/Items.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/MapItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/MapItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/MinecartItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/MinecartItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/Rarity.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/Rarity.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/ShearsItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/ShearsItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/ShovelItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/ShovelItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/SpawnEggItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/SpawnEggItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/SpyglassItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/SpyglassItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/TooltipFlag.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/TooltipFlag.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/TridentItem.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/TridentItem.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/crafting/Recipe.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/crafting/Recipe.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/item/crafting/RecipeMap.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/item/crafting/RecipeMap.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/BaseSpawner.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/BaseSpawner.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/BlockGetter.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/BlockGetter.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/DataPackConfig.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/DataPackConfig.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/Level.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/Level.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/LevelSettings.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/LevelSettings.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/NaturalSpawner.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/NaturalSpawner.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/ServerExplosion.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/ServerExplosion.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/SignalGetter.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/SignalGetter.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/TicketStorage.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/TicketStorage.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/biome/Biome.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/biome/Biome.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/Block.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/Block.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/Blocks.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/Blocks.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/CactusBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/CactusBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/ChestBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/ChestBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/CocoaBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/CocoaBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/CoralBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/CoralBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/CropBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/CropBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/DiodeBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/DiodeBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/DoorBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/DoorBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/FarmBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/FarmBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/FireBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/FireBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/FungusBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/FungusBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/LiquidBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/LiquidBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/NoteBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/NoteBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/RailState.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/RailState.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/SoundType.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/SoundType.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/SpongeBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/SpongeBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/StemBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/StemBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/TntBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/TntBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/block/VineBlock.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/block/VineBlock.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/chunk/ChunkAccess.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/chunk/ChunkAccess.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/chunk/LevelChunk.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/chunk/LevelChunk.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/chunk/ProtoChunk.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/chunk/ProtoChunk.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/level/material/Fluid.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/level/material/Fluid.java.patch -------------------------------------------------------------------------------- /patches/net/minecraft/world/phys/AABB.java.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/patches/net/minecraft/world/phys/AABB.java.patch -------------------------------------------------------------------------------- /projects/base/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | build 3 | .gradle 4 | run 5 | -------------------------------------------------------------------------------- /projects/base/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/projects/base/build.gradle -------------------------------------------------------------------------------- /projects/neoforge/.gitignore: -------------------------------------------------------------------------------- 1 | src 2 | build 3 | .gradle 4 | run 5 | -------------------------------------------------------------------------------- /projects/neoforge/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/projects/neoforge/build.gradle -------------------------------------------------------------------------------- /server_files/args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/server_files/args.txt -------------------------------------------------------------------------------- /server_files/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/server_files/run.bat -------------------------------------------------------------------------------- /server_files/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/server_files/run.sh -------------------------------------------------------------------------------- /server_files/user_jvm_args.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/server_files/user_jvm_args.txt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/settings.gradle -------------------------------------------------------------------------------- /src/client/java/net/neoforged/neoforge/client/ClientHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/client/java/net/neoforged/neoforge/client/ClientHooks.java -------------------------------------------------------------------------------- /src/generated/resources/assets/c/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/assets/c/lang/en_us.json -------------------------------------------------------------------------------- /src/generated/resources/assets/minecraft/atlases/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/assets/minecraft/atlases/blocks.json -------------------------------------------------------------------------------- /src/generated/resources/assets/minecraft/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/assets/minecraft/sounds.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/barrels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/barrels.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/barrels/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/barrels/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/bookshelves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/bookshelves.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/budding_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/budding_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/buds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/buds.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/chains.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/chests.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/chests/ender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/chests/ender.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/chests/trapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/chests/trapped.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/chests/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/chests/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/clusters.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/cobblestones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/cobblestones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/concretes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/concretes.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/black.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/blue.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/brown.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/cyan.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/gray.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/green.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/light_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/light_blue.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/light_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/light_gray.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/lime.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/magenta.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/orange.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/pink.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/purple.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/red.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/white.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/dyed/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/dyed/yellow.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/end_stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/end_stones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/fence_gates.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/fences/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/fences/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/flowers/small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/flowers/small.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/flowers/tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/flowers/tall.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/glass_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/glass_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/glass_panes.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/gravels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/gravels.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/hidden_from_recipe_viewers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/natural_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/natural_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/natural_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/natural_woods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/netherracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/netherracks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/obsidians.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/obsidians.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ore_rates/dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ore_rates/dense.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/coal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/coal.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/copper.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/diamond.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/emerald.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/gold.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/iron.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/lapis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/lapis.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/quartz.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ores/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/ores/redstone.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/pumpkins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/pumpkins.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/pumpkins/carved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/pumpkins/carved.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/pumpkins/normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/pumpkins/normal.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/ropes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/sands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/sands.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/sands/colorless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/sands/colorless.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/sands/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/sands/red.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/sandstone/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/sandstone/slabs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/skulls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/skulls.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/stones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/storage_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/storage_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/stripped_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/stripped_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/block/stripped_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/block/stripped_woods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/entity_type/boats.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/entity_type/boats.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/entity_type/bosses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/entity_type/bosses.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/entity_type/capturing_not_supported.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/entity_type/minecarts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/entity_type/minecarts.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/entity_type/teleporting_not_supported.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/beetroot_soup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/beetroot_soup.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/experience.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/gaseous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/gaseous.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/hidden_from_recipe_viewers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/honey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/honey.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/lava.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/milk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/milk.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/mushroom_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/mushroom_stew.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/potion.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/potion.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/rabbit_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/rabbit_stew.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/suspicious_stew.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/suspicious_stew.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/fluid/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/fluid/water.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/animal_foods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/animal_foods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/armors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/armors.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/barrels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/barrels.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/barrels/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/barrels/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/bones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/bones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/bookshelves.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/bookshelves.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/bricks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/bricks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/bricks/nether.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/bricks/nether.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/bricks/normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/bricks/normal.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/bricks/resin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/bricks/resin.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/buckets.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets/empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/buckets/empty.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets/lava.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/buckets/lava.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets/milk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/buckets/milk.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buckets/water.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/buckets/water.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/budding_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/budding_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/buds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/buds.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/chains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/chains.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/chests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/chests.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/chests/ender.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/chests/ender.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/chests/trapped.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/chests/trapped.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/chests/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/chests/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/clumps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/clumps.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/clumps/resin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/clumps/resin.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/clusters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/clusters.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/cobblestones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/cobblestones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/concrete_powders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/concrete_powders.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/concretes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/concretes.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/beetroot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/beetroot.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/cactus.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/cactus.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/carrot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/carrot.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/cocoa_bean.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/cocoa_bean.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/melon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/melon.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/potato.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/potato.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/pumpkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/pumpkin.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/sugar_cane.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/sugar_cane.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/crops/wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/crops/wheat.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/drinks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/honey.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/drinks/honey.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/juice.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/magic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/drinks/magic.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/milk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/drinks/milk.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/ominous.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/drinks/ominous.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/water.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/drinks/watery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/drinks/watery.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dusts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dusts.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dusts/glowstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dusts/glowstone.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dusts/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dusts/redstone.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/black.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/blue.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/brown.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/cyan.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/gray.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/green.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/light_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/light_blue.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/light_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/light_gray.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/lime.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/magenta.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/orange.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/pink.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/purple.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/red.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/white.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyed/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyed/yellow.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/black.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/black.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/blue.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/brown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/brown.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/cyan.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/cyan.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/gray.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/green.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/green.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/light_blue.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/light_blue.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/light_gray.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/light_gray.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/lime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/lime.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/magenta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/magenta.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/orange.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/orange.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/pink.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/pink.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/purple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/purple.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/red.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/white.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/white.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/dyes/yellow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/dyes/yellow.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/eggs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/eggs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/enchantables.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/enchantables.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/end_stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/end_stones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ender_pearls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ender_pearls.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/feathers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/feathers.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fence_gates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/fence_gates.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fences.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/fences.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fences/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/fences/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/fertilizers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/fertilizers.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/flowers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/flowers.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/flowers/small.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/flowers/small.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/flowers/tall.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/flowers/tall.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/berry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/berry.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/bread.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/bread.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/candy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/candy.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/cookie.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/fruit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/fruit.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/golden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/golden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/pie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/pie.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/raw_fish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/raw_fish.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/raw_meat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/raw_meat.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/soup.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/soup.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/foods/vegetable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/foods/vegetable.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/amethyst.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems/amethyst.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems/diamond.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems/emerald.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/lapis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems/lapis.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/prismarine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems/prismarine.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gems/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gems/quartz.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/glass_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/glass_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/glass_panes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/glass_panes.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gravels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gravels.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/gunpowders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/gunpowders.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/hidden_from_recipe_viewers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ingots.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ingots/copper.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ingots/gold.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ingots/iron.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ingots/netherite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ingots/netherite.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/leathers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/leathers.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/mushrooms.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/mushrooms.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/music_discs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/music_discs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/natural_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/natural_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/natural_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/natural_woods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nether_stars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/nether_stars.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/netherracks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/netherracks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/nuggets.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/nuggets/copper.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/nuggets/gold.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/nuggets/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/nuggets/iron.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/obsidians.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/obsidians.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/obsidians/crying.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/obsidians/crying.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/obsidians/normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/obsidians/normal.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ore_rates/dense.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ore_rates/dense.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ore_rates/sparse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ore_rates/sparse.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/coal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/coal.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/copper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/copper.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/diamond.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/diamond.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/emerald.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/emerald.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/gold.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/gold.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/iron.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/lapis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/lapis.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/quartz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/quartz.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ores/redstone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/ores/redstone.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/potions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/potions.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/potions/bottle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/potions/bottle.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/pumpkins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/pumpkins.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/pumpkins/carved.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/pumpkins/carved.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/pumpkins/normal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/pumpkins/normal.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/raw_materials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/raw_materials.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/rods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/rods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/rods/blaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/rods/blaze.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/rods/breeze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/rods/breeze.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/rods/wooden.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/rods/wooden.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/ropes.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/sands.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/sands.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/sands/colorless.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/sands/colorless.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/sands/red.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/sands/red.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/sandstone/blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/sandstone/blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/sandstone/slabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/sandstone/slabs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/sandstone/stairs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/sandstone/stairs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/seeds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/seeds.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/seeds/beetroot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/seeds/beetroot.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/seeds/melon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/seeds/melon.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/seeds/pumpkin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/seeds/pumpkin.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/seeds/wheat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/seeds/wheat.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/shulker_boxes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/shulker_boxes.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/slime_balls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/slime_balls.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/stones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/stones.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/storage_blocks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/storage_blocks.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/strings.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/stripped_logs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/stripped_logs.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/stripped_woods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/stripped_woods.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/bow.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/brush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/brush.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/crossbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/crossbow.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/igniter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/igniter.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/mace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/mace.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/shear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/shear.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/shield.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/spear.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/item/tools/spear.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/item/tools/wrench.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/hidden_from_locator_selection.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_dry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/worldgen/biome/is_dry.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_end.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/worldgen/biome/is_end.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_hot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/worldgen/biome/is_hot.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_icy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/worldgen/biome/is_icy.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_temperate/end.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_temperate/nether.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/biome/is_wet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/c/tags/worldgen/biome/is_wet.json -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/structure/hidden_from_displayers.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/c/tags/worldgen/structure/hidden_from_locator_selection.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/acacia_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/acacia_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/andesite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/andesite.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/anvil.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/anvil.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/armor_stand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/armor_stand.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/arrow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/arrow.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/bamboo_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/bamboo_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/birch_fence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/birch_fence.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/birch_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/birch_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/blue_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/blue_banner.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/blue_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/blue_candle.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/bow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/bow.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/brush.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/brush.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/bucket.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/bundle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/bundle.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/campfire.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/campfire.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/candle.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/cauldron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/cauldron.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/cherry_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/cherry_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/clock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/clock.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/compass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/compass.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/copper_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/copper_axe.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/copper_bars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/copper_bars.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/copper_door.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/copper_door.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/copper_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/copper_hoe.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/crafter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/crafter.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/crossbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/crossbow.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/cyan_banner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/cyan_banner.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/cyan_candle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/cyan_candle.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/cyan_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/cyan_dye.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/diorite.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/diorite.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/dropper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/dropper.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/gray_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/gray_dye.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/hopper.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/hopper.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/iron_axe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/iron_axe.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/iron_hoe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/iron_hoe.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/jukebox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/jukebox.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/ladder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/ladder.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/lantern.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/lantern.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/lead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/lead.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/lever.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/lever.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/lime_dye.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/lime_dye.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/loom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/loom.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/minecart.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/minecart.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/oak_sign.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/oak_sign.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/observer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/observer.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/painting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/painting.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/piston.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/piston.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/rail.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/rail.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/saddle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/saddle.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/shears.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/shears.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/shield.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/shield.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/spyglass.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/spyglass.json -------------------------------------------------------------------------------- /src/generated/resources/data/minecraft/recipe/torch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/data/minecraft/recipe/torch.json -------------------------------------------------------------------------------- /src/generated/resources/data/neoforge/tags/block/needs_netherite_tool.json: -------------------------------------------------------------------------------- 1 | { 2 | "values": [] 3 | } -------------------------------------------------------------------------------- /src/generated/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/pack.mcmeta -------------------------------------------------------------------------------- /src/generated/resources/reports/registry_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/generated/resources/reports/registry_order.json -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/common/IShearable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/common/IShearable.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/common/NeoForge.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/common/NeoForge.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/common/Tags.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/common/Tags.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/common/util/Lazy.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/common/util/Lazy.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/entity/PartEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/entity/PartEntity.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/event/EventHooks.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/event/EventHooks.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/fluids/FluidStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/fluids/FluidStack.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/fluids/FluidType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/fluids/FluidType.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/fluids/FluidUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/fluids/FluidUtil.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/fluids/IFluidTank.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/fluids/IFluidTank.java -------------------------------------------------------------------------------- /src/main/java/net/neoforged/neoforge/junit/JUnitMain.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/java/net/neoforged/neoforge/junit/JUnitMain.java -------------------------------------------------------------------------------- /src/main/resources/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | FML-System-Mods: neoforge 3 | -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/META-INF/accesstransformer.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/accesstransformergenerated.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/META-INF/accesstransformergenerated.cfg -------------------------------------------------------------------------------- /src/main/resources/META-INF/injected-interfaces.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/META-INF/injected-interfaces.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/README.txt -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/cs_cz.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/cs_cz.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/da_dk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/da_dk.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/de_de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/de_de.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/en_gb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/en_gb.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/en_us.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/eo_uy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/eo_uy.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/es_es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/es_es.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/et_ee.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/et_ee.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/fr_fr.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/hu_hu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/hu_hu.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/it_it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/it_it.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/ja_jp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/ja_jp.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/ko_kr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/ko_kr.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/ms_my.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/ms_my.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/nl_nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/nl_nl.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/pl_pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/pl_pl.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/pt_br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/pt_br.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/pt_pt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/pt_pt.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/ro_ro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/ro_ro.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/ru_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/ru_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/sk_sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/sk_sk.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/tr_tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/tr_tr.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/tt_ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/tt_ru.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/uk_ua.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/uk_ua.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/vi_vn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/vi_vn.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/zh_cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/zh_cn.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/lang/zh_tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/lang/zh_tw.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/models/item/bucket.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/models/item/bucket.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/models/item/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/models/item/default.json -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/textures/gui/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/textures/gui/icons.png -------------------------------------------------------------------------------- /src/main/resources/assets/neoforge/textures/white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/assets/neoforge/textures/white.png -------------------------------------------------------------------------------- /src/main/resources/data/neoforge/damage_type/poison.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/data/neoforge/damage_type/poison.json -------------------------------------------------------------------------------- /src/main/resources/mcplogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/mcplogo.png -------------------------------------------------------------------------------- /src/main/resources/neoforge.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/neoforge.mixins.json -------------------------------------------------------------------------------- /src/main/resources/neoforged_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/neoforged_logo.png -------------------------------------------------------------------------------- /src/main/resources/url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/resources/url.png -------------------------------------------------------------------------------- /src/main/templates/NeoForgeVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/templates/NeoForgeVersion.java -------------------------------------------------------------------------------- /src/main/templates/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/templates/neoforge.mods.toml -------------------------------------------------------------------------------- /src/main/templates/version.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/src/main/templates/version.properties -------------------------------------------------------------------------------- /testframework/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/testframework/build.gradle -------------------------------------------------------------------------------- /tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/build.gradle -------------------------------------------------------------------------------- /tests/src/generated/resources/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/generated/resources/pack.mcmeta -------------------------------------------------------------------------------- /tests/src/junit/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/junit/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /tests/src/junit/resources/feature_flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/junit/resources/feature_flags.json -------------------------------------------------------------------------------- /tests/src/junit/resources/unittests.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/junit/resources/unittests.mixins.json -------------------------------------------------------------------------------- /tests/src/main/resources/META-INF/enumextensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/META-INF/enumextensions.json -------------------------------------------------------------------------------- /tests/src/main/resources/META-INF/jarjar/jijroot-1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/META-INF/jarjar/jijroot-1.3.jar -------------------------------------------------------------------------------- /tests/src/main/resources/META-INF/neoforge.mods.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/META-INF/neoforge.mods.toml -------------------------------------------------------------------------------- /tests/src/main/resources/assets/config_test/lang/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/assets/config_test/lang/en_US.lang -------------------------------------------------------------------------------- /tests/src/main/resources/assets/configui/lang/en_us.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/assets/configui/lang/en_us.json -------------------------------------------------------------------------------- /tests/src/main/resources/assets/custom_head_test/models/item/blaze_head.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/template_skull" 3 | } -------------------------------------------------------------------------------- /tests/src/main/resources/assets/forge/textures/blocks/milk_flow.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } -------------------------------------------------------------------------------- /tests/src/main/resources/assets/item_model_conflict_test/models/block/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:block/cobblestone" 3 | } 4 | -------------------------------------------------------------------------------- /tests/src/main/resources/assets/item_model_conflict_test/models/item/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/torch" 3 | } 4 | -------------------------------------------------------------------------------- /tests/src/main/resources/assets/item_model_generation_test/textures/items/animation_test.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "animation": {} 3 | } 4 | -------------------------------------------------------------------------------- /tests/src/main/resources/assets/level_sensitive_light_block_test/models/item/light_block.json: -------------------------------------------------------------------------------- 1 | { 2 | "parent": "minecraft:item/glowstone" 3 | } -------------------------------------------------------------------------------- /tests/src/main/resources/assets/music_disc_test/sounds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/assets/music_disc_test/sounds.json -------------------------------------------------------------------------------- /tests/src/main/resources/assets/neotests/lang/fr_fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/assets/neotests/lang/fr_fr.json -------------------------------------------------------------------------------- /tests/src/main/resources/assets/neotests_default_sprite_metadata_sections/textures/block/resource.png.mcmeta: -------------------------------------------------------------------------------- 1 | { 2 | "default_metadata_test": true 3 | } -------------------------------------------------------------------------------- /tests/src/main/resources/assets/on_tree_grow_block_test/textures/blocks/test_grass_block_top.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/src/main/resources/assets/shield_test/lang/en_US.lang: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/assets/shield_test/lang/en_US.lang -------------------------------------------------------------------------------- /tests/src/main/resources/blah.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/blah.json -------------------------------------------------------------------------------- /tests/src/main/resources/data/data_pack_registries_test/data_pack_registries_test/syncable/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": "success" 3 | } -------------------------------------------------------------------------------- /tests/src/main/resources/data/data_pack_registries_test/data_pack_registries_test/unsyncable/test.json: -------------------------------------------------------------------------------- 1 | { 2 | "value": "success" 3 | } -------------------------------------------------------------------------------- /tests/src/main/resources/game_test_feature_flags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/game_test_feature_flags.json -------------------------------------------------------------------------------- /tests/src/main/resources/mod.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/mod.jar -------------------------------------------------------------------------------- /tests/src/main/resources/neotests.mixins.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/neotests.mixins.json -------------------------------------------------------------------------------- /tests/src/main/resources/test_enabled_data_pack/pack.mcmeta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neoforged/NeoForge/HEAD/tests/src/main/resources/test_enabled_data_pack/pack.mcmeta --------------------------------------------------------------------------------