Fix AnimationItemOverrideList not falling back to super (#2990)

This commit is contained in:
Vincent Lee 2016-06-16 03:49:00 -05:00 committed by Fry
parent 9cd2c697e5
commit a63d92eb60
1 changed files with 1 additions and 1 deletions

View File

@ -59,6 +59,6 @@ public final class AnimationItemOverrideList extends ItemOverrideList
IModelState state = asm.apply(Animation.getWorldTime(world, Animation.getPartialTickTime())).getLeft();
return model.bake(new ModelStateComposition(state, this.state), format, bakedTextureGetter);
}
return originalModel;
return super.handleItemState(originalModel, stack, world, entity);
}
}