Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
IMS212 committed Feb 9, 2024
1 parent 193115e commit 6532efc
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public void endBlock() {
((BlockSensitiveBufferBuilder) getOriginalBufferBuilder()).endBlock();
}

@Inject(method = "resetAttributeBindings", at = @At("RETURN"))
@Inject(method = "resetAttributeBindings", at = @At("RETURN"), remap = false)
private void onResetAttributeBindings(CallbackInfo ci) {
attributeOffsetTangent = ATTRIBUTE_NOT_PRESENT;
attributeOffsetMidTexCoord = ATTRIBUTE_NOT_PRESENT;
Expand All @@ -137,7 +137,7 @@ private void onResetAttributeBindings(CallbackInfo ci) {
attributeOffsetMidBlock = ATTRIBUTE_NOT_PRESENT;
}

@Inject(method = "updateAttributeBindings", at = @At("RETURN"))
@Inject(method = "updateAttributeBindings", at = @At("RETURN"), remap = false)
private void onUpdateAttributeBindings(VertexFormatDescription desc, CallbackInfo ci) {
if (desc.containsElement(IrisCommonVertexAttributes.TANGENT)) {
requiredAttributes |= ATTRIBUTE_TANGENT_BIT;
Expand Down

0 comments on commit 6532efc

Please sign in to comment.