more misc fluid work, gonna leave most of this untill we have an offical or new api

This commit is contained in:
modmuss50 2019-07-24 19:06:21 +01:00
parent 0742abb840
commit 6a93c3fd46
28 changed files with 147 additions and 404 deletions

View file

@ -10,7 +10,7 @@ import net.minecraft.client.render.model.UnbakedModel;
import net.minecraft.client.texture.Sprite;
import net.minecraft.client.texture.SpriteAtlasTexture;
import net.minecraft.util.Identifier;
import techreborn.client.render.DyamicCellBakedModel;
import techreborn.client.render.DynamicCellBakedModel;
import javax.annotation.Nullable;
import java.util.Collection;
@ -46,7 +46,7 @@ public class TechRebornClient implements ClientModInitializer {
@Nullable
@Override
public BakedModel bake(ModelLoader modelLoader, Function<Identifier, Sprite> function, ModelBakeSettings modelBakeSettings) {
return new DyamicCellBakedModel();
return new DynamicCellBakedModel();
}
};
});