Bump version to 3.0.5-SNAPSHOT

This commit is contained in:
FlorianMichael 2024-01-02 16:15:56 +01:00
parent 3dddc5b75e
commit 5762a0578f
No known key found for this signature in database
GPG Key ID: C2FB87E71C425126
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@ loader_version=0.15.3
fabric_api_version=0.91.3+1.20.4
# Project Details
mod_version=3.0.4-SNAPSHOT
mod_version=3.0.5-SNAPSHOT
maven_group=de.florianmichael
archives_base_name=viafabricplus

View File

@ -81,7 +81,7 @@ public class FootStepParticle extends SpriteBillboardParticle {
final DefaultParticleType footStepType = FabricParticleTypes.simple(true);
Registry.register(Registries.PARTICLE_TYPE, new Identifier("viafabricplus", "footstep"), footStepType);
ParticleFactoryRegistry.getInstance().register(footStepType, FootStepParticle.Factory::new); // Add some dummy factory
ParticleFactoryRegistry.getInstance().register(footStepType, FootStepParticle.Factory::new);
ID = Registries.PARTICLE_TYPE.getRawId(footStepType);
}