mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2024-11-10 11:59:59 +00:00
Bump Forge version
Turtle models now work (though texture registration is still broken).
This commit is contained in:
parent
772c54ec74
commit
f1e551b960
@ -3,5 +3,5 @@ mod_version=1.83.1
|
||||
|
||||
# Minecraft properties
|
||||
mc_version=1.14.2
|
||||
forge_version=26.0.35
|
||||
forge_version=26.0.55
|
||||
mappings_version=20190621-1.14.2
|
||||
|
@ -34,7 +34,7 @@ import java.util.Map;
|
||||
/**
|
||||
* Registers textures and models for items.
|
||||
*/
|
||||
@Mod.EventBusSubscriber( modid = ComputerCraft.MOD_ID, value = Dist.CLIENT )
|
||||
@Mod.EventBusSubscriber( modid = ComputerCraft.MOD_ID, value = Dist.CLIENT, bus = Mod.EventBusSubscriber.Bus.MOD )
|
||||
public final class ClientRegistry
|
||||
{
|
||||
private static final String[] EXTRA_MODELS = new String[] {
|
||||
@ -91,7 +91,7 @@ public final class ClientRegistry
|
||||
{
|
||||
// Load all extra models
|
||||
ModelLoader loader = event.getModelLoader();
|
||||
Map<ModelResourceLocation, IBakedModel> registry = event.getModelRegistry();
|
||||
Map<ResourceLocation, IBakedModel> registry = event.getModelRegistry();
|
||||
|
||||
for( String model : EXTRA_MODELS )
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user