Skip to content

Commit

Permalink
update freq
Browse files Browse the repository at this point in the history
  • Loading branch information
HamaIndustries committed Nov 27, 2024
1 parent 2535c88 commit c64e835
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ minecraft_version=1.21.1
loader_version=0.16.9

# Mod Properties
mod_version=1.0.0
mod_version=3.0.0
maven_group=symbolics.division.meret
archives_base_name=meret

Expand Down
3 changes: 1 addition & 2 deletions src/client/java/symbolics/division/meret/MeretClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
import net.minecraft.core.Registry;
import net.minecraft.core.registries.Registries;
import net.minecraft.sounds.Music;
import net.minecraft.sounds.SoundEvent;
import net.minecraft.tags.TagKey;
import net.minecraft.world.item.JukeboxSong;
import org.jetbrains.annotations.Nullable;
Expand Down Expand Up @@ -43,6 +42,6 @@ public static Music getOverride(LocalPlayer player) {

if (song == null) return null;

return new Music(song.value().soundEvent(), 300, 300, false);
return new Music(song.value().soundEvent(), 20 * 3 * 60, 20 * 5 * 60, false);
}
}

0 comments on commit c64e835

Please sign in to comment.