34
34
import net .minecraft .util .collection .DefaultedList ;
35
35
import net .minecraft .util .math .BlockPos ;
36
36
import net .minecraft .util .registry .Registry ;
37
- import net .minecraft .world .biome .BuiltinBiomes ;
38
-
39
- import java .util .logging .LogManager ;
40
37
41
38
import static eu .midnightdust .visualoverhaul .VisualOverhaul .*;
42
39
@@ -128,6 +125,7 @@ public void onInitializeClient() {
128
125
ResourceManagerHelper .registerBuiltinResourcePack (new Identifier ("visualoverhaul" ,"nobrewingbottles" ), modContainer , ResourcePackActivationType .DEFAULT_ENABLED );
129
126
ResourceManagerHelper .registerBuiltinResourcePack (new Identifier ("visualoverhaul" ,"fancyfurnace" ), modContainer , ResourcePackActivationType .DEFAULT_ENABLED );
130
127
ResourceManagerHelper .registerBuiltinResourcePack (new Identifier ("visualoverhaul" ,"coloredwaterbucket" ), modContainer , ResourcePackActivationType .DEFAULT_ENABLED );
128
+ ResourceManagerHelper .registerBuiltinResourcePack (new Identifier ("visualoverhaul" ,"rounddiscs" ), modContainer , ResourcePackActivationType .ALWAYS_ENABLED );
131
129
});
132
130
133
131
@@ -148,6 +146,11 @@ public void onInitializeClient() {
148
146
grassColor = -8934609 ;
149
147
}
150
148
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> tintIndex == 0 ? -1 : waterColor , Items .WATER_BUCKET );
149
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> tintIndex == 0 ? -1 : waterColor , Items .AXOLOTL_BUCKET );
150
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> tintIndex == 0 ? -1 : waterColor , Items .COD_BUCKET );
151
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> tintIndex == 0 ? -1 : waterColor , Items .PUFFERFISH_BUCKET );
152
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> tintIndex == 0 ? -1 : waterColor , Items .TROPICAL_FISH_BUCKET );
153
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> tintIndex == 0 ? -1 : waterColor , Items .SALMON_BUCKET );
151
154
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> grassColor , Items .GRASS_BLOCK );
152
155
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> grassColor , Items .GRASS );
153
156
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> grassColor , Items .TALL_GRASS );
@@ -157,6 +160,9 @@ public void onInitializeClient() {
157
160
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> foliageColor , Items .DARK_OAK_LEAVES );
158
161
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> foliageColor , Items .JUNGLE_LEAVES );
159
162
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> foliageColor , Items .OAK_LEAVES );
163
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> foliageColor , Items .VINE );
164
+ ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> foliageColor , Items .SUGAR_CANE );
165
+ if (VOConfig .coloredLilypad ) ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> foliageColor , Items .LILY_PAD );
160
166
ColorProviderRegistry .ITEM .register ((stack , tintIndex ) -> {
161
167
if ((PotionUtil .getPotion (stack ) == Potions .WATER || PotionUtil .getPotion (stack ) == Potions .MUNDANE || PotionUtil .getPotion (stack ) == Potions .THICK || PotionUtil .getPotion (stack ) == Potions .AWKWARD ) && tintIndex == 0 ) {
162
168
return waterColor ;
@@ -177,5 +183,8 @@ public void onInitializeClient() {
177
183
}, Items .LINGERING_POTION );
178
184
});
179
185
}
186
+ if (VOConfig .coloredLilypad ) {
187
+ ColorProviderRegistry .BLOCK .register ((state , world , pos , tintIndex ) -> world != null ? world .getColor (pos , BiomeColors .FOLIAGE_COLOR ) : 0 , Blocks .LILY_PAD );
188
+ }
180
189
}
181
190
}
0 commit comments