Fix FabricMaterialBuilder.notSolid having the wrong return type (#1308)

Should be backwards compatible.

(cherry picked from commit cd0f1d33c1)
This commit is contained in:
PepperCode1 2021-02-14 09:41:59 -08:00 committed by modmuss50
parent 6d07a7c2fa
commit 4270b5a63f

View file

@ -73,7 +73,7 @@ public class FabricMaterialBuilder extends Material.Builder {
}
@Override
public Material.Builder notSolid() {
public FabricMaterialBuilder notSolid() {
super.notSolid();
return this;
}