We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Without Embeddium (normal): With Embeddium:
I'm the dev of the mod, so you can ask me any questions you want. Code of the mod: https://github.com/marlester-dev/twilightforest-unofficial Possibly because of: https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/mixin/ItemRendererMixin.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/client/renderer/GiantItemRenderHelper.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/mixin/ModelLoaderMixin.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/client/model/TFItemLayerModel.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/data/ItemModelGenerator.java#L78
https://pastebin.com/MVqK1PG5
The text was updated successfully, but these errors were encountered:
fixed on the mod's side by using
@WrapOperation(method = "render", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/renderer/entity/ItemRenderer;renderModelLists(Lnet/minecraft/client/resources/model/BakedModel;Lnet/minecraft/world/item/ItemStack;IILcom/mojang/blaze3d/vertex/PoseStack;Lcom/mojang/blaze3d/vertex/VertexConsumer;)V")) private void startRenderItem(ItemRenderer instance, BakedModel model, ItemStack stack, int combinedLight, int combinedOverlay, PoseStack matrixStack, VertexConsumer buffer, Operation<Void> original) { if (stack.getItem() instanceof GiantItem) { matrixStack.pushPose(); GiantItemRenderHelper.handle(matrixStack); original.call(instance, model, stack, combinedLight, combinedOverlay, matrixStack, buffer); matrixStack.popPose(); } else { original.call(instance, model, stack, combinedLight, combinedOverlay, matrixStack, buffer); } }
Sorry, something went wrong.
you may close this issue if you want
No branches or pull requests
Bug Description
Without Embeddium (normal):
With Embeddium:
Reproduction Steps
I'm the dev of the mod, so you can ask me any questions you want.
Code of the mod: https://github.com/marlester-dev/twilightforest-unofficial
Possibly because of: https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/mixin/ItemRendererMixin.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/client/renderer/GiantItemRenderHelper.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/mixin/ModelLoaderMixin.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/client/model/TFItemLayerModel.java , https://github.com/marlester-dev/twilightforest-unofficial/blob/1.20.1-fabric/src/main/java/twilightforest/data/ItemModelGenerator.java#L78
Log File
https://pastebin.com/MVqK1PG5
The text was updated successfully, but these errors were encountered: