mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-22 15:47:57 -05:00
d1753d4af9
* Fix BlockRenderLayerMapImpl no longer working in 19w42a. Move some LOG.warns to InvalidParameterException In 19w42a new class (class_4699) that contains 3 maps for Item, Block and Fluid RenderLayers. Before these maps were in the RenderLayer class causing them to be populated well before this API had a chance to get to handling the consumers. I have tweaked the impl to handle RenderLayers being added before initialize is called and after, this removes the need to ensure the class load order is correct. * quick cleanup * InvalidParameterException -> IllegalArgumentException * Move to single lines + add a blank line
6 lines
180 B
Groovy
6 lines
180 B
Groovy
archivesBaseName = "fabric-blockrenderlayer-v1"
|
|
version = getSubprojectVersion(project, "1.1.1")
|
|
|
|
dependencies {
|
|
compile project(path: ':fabric-api-base', configuration: 'dev')
|
|
}
|