Skip to content

Commit

Permalink
Fixed serverside issues
Browse files Browse the repository at this point in the history
  • Loading branch information
LudoCrypt committed Nov 23, 2023
1 parent 659112e commit e496bdf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
org.gradle.jvmargs = -Xmx1G
org.gradle.parallel = true

version = 10.0.1
version = 10.0.2
maven_group = net.ludocrypt
archives_base_name = limlib
5 changes: 5 additions & 0 deletions src/main/java/net/ludocrypt/limlib/impl/Limlib.java
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
import net.ludocrypt.limlib.api.effects.sound.distortion.StaticDistortionEffect;
import net.ludocrypt.limlib.api.effects.sound.reverb.ReverbEffect;
import net.ludocrypt.limlib.api.effects.sound.reverb.StaticReverbEffect;
import net.ludocrypt.limlib.api.skybox.EmptySkybox;
import net.ludocrypt.limlib.api.skybox.Skybox;
import net.ludocrypt.limlib.api.skybox.TexturedSkybox;
import net.ludocrypt.limlib.impl.debug.DebugNbtChunkGenerator;
import net.minecraft.registry.Registries;
import net.minecraft.registry.Registry;
Expand All @@ -42,6 +45,8 @@ public void onInitialize(ModContainer mod) {
EmptyDimensionEffects.CODEC);
Registry.register(PostEffect.POST_EFFECT_CODEC, new Identifier("limlib", "static"), StaticPostEffect.CODEC);
Registry.register(PostEffect.POST_EFFECT_CODEC, new Identifier("limlib", "empty"), EmptyPostEffect.CODEC);
Registry.register(Skybox.SKYBOX_CODEC, new Identifier("limlib", "empty"), EmptySkybox.CODEC);
Registry.register(Skybox.SKYBOX_CODEC, new Identifier("limlib", "textured"), TexturedSkybox.CODEC);
Registry
.register(Registries.CHUNK_GENERATOR, new Identifier("limlib", "debug_nbt_chunk_generator"),
DebugNbtChunkGenerator.CODEC);
Expand Down

0 comments on commit e496bdf

Please sign in to comment.