mirror of
https://github.com/FabricMC/fabric.git
synced 2024-11-14 19:25:23 -05:00
fix test compile
This commit is contained in:
parent
71ab75d47c
commit
b3acb94a6d
1 changed files with 1 additions and 1 deletions
|
@ -37,7 +37,7 @@ public class ColorProviderMod implements ClientModInitializer {
|
|||
// Redstone is now the same color as grass
|
||||
ColorProviderRegistry.BLOCK.register((block, world, pos, layer) -> {
|
||||
BlockColorMapper provider = ColorProviderRegistry.BLOCK.get(Blocks.GRASS);
|
||||
return provider == null ? -1 : provider.getColor(block, pos, world, layer);
|
||||
return provider == null ? -1 : provider.getColor(block, world, pos, layer);
|
||||
}, Blocks.REDSTONE_WIRE);
|
||||
|
||||
// Make white dye glow red.
|
||||
|
|
Loading…
Reference in a new issue