|
1 | 1 | package ladysnake.effective.client; |
2 | 2 |
|
3 | | -import com.sammy.lodestone.systems.rendering.particle.type.LodestoneParticleType; |
4 | 3 | import ladysnake.effective.client.particle.*; |
5 | | -import ladysnake.effective.client.particle.types.ColoredParticleType; |
6 | 4 | import ladysnake.effective.client.particle.types.SplashParticleType; |
7 | 5 | import ladysnake.effective.client.render.entity.model.SplashBottomModel; |
8 | 6 | import ladysnake.effective.client.render.entity.model.SplashBottomRimModel; |
@@ -58,7 +56,7 @@ public class Effective implements ClientModInitializer { |
58 | 56 | public static DefaultParticleType GLOW_DROPLET; |
59 | 57 | public static DefaultParticleType GLOW_RIPPLE; |
60 | 58 | public static DefaultParticleType GLOW_WATERFALL_CLOUD; |
61 | | - public static AllayTwinkParticleType ALLAY_TWINKLE; |
| 59 | + public static AllayTwinkleParticleType ALLAY_TWINKLE; |
62 | 60 |
|
63 | 61 | // sound events |
64 | 62 | public static SoundEvent AMBIENCE_WATERFALL = new SoundEvent(new Identifier(MODID, "ambience.waterfall")); |
@@ -96,8 +94,8 @@ public void onInitializeClient() { |
96 | 94 | ParticleFactoryRegistry.getInstance().register(Effective.GLOW_RIPPLE, GlowRippleParticle.DefaultFactory::new); |
97 | 95 | GLOW_WATERFALL_CLOUD = Registry.register(Registry.PARTICLE_TYPE, "effective:glow_waterfall_cloud", FabricParticleTypes.simple(true)); |
98 | 96 | ParticleFactoryRegistry.getInstance().register(Effective.GLOW_WATERFALL_CLOUD, GlowWaterfallCloudParticle.DefaultFactory::new); |
99 | | - ALLAY_TWINKLE = Registry.register(Registry.PARTICLE_TYPE, "effective:allay_twinkle", new AllayTwinkParticleType()); |
100 | | - ParticleFactoryRegistry.getInstance().register(Effective.ALLAY_TWINKLE, AllayTwinkParticleType.Factory::new); |
| 97 | + ALLAY_TWINKLE = Registry.register(Registry.PARTICLE_TYPE, "effective:allay_twinkle", new AllayTwinkleParticleType()); |
| 98 | + ParticleFactoryRegistry.getInstance().register(Effective.ALLAY_TWINKLE, AllayTwinkleParticleType.Factory::new); |
101 | 99 |
|
102 | 100 | // sound events |
103 | 101 | AMBIENCE_WATERFALL = Registry.register(Registry.SOUND_EVENT, AMBIENCE_WATERFALL.getId(), AMBIENCE_WATERFALL); |
|
0 commit comments