[1.15.x] Remove unused parameter from ElementBuilder#rotation (fixes #6321) (#6407)

This commit is contained in:
Choonster TheMage 2020-01-06 06:29:45 +11:00 committed by tterrag
parent bc878ddf19
commit 6e8b976089
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ public class ModelBuilder<T extends ModelBuilder<T>> extends ModelFile {
return faces.computeIfAbsent(dir, FaceBuilder::new);
}
public RotationBuilder rotation(BlockPartRotation rotation) {
public RotationBuilder rotation() {
if (this.rotation == null) {
this.rotation = new RotationBuilder();
}