Skip to content

Commit

Permalink
Fix jukebox, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Patbox committed Jun 11, 2024
1 parent 05189b2 commit 79aa037
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
8 changes: 4 additions & 4 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ org.gradle.jvmargs=-Xmx4G
# Fabric Properties
# check these on https://fabricmc.net/use

minecraft_version=1.21-pre4
yarn_mappings=1.21-pre4+build.1
minecraft_version=1.21-rc1
yarn_mappings=1.21-rc1+build.1
loader_version=0.15.11

# Fabric API
fabric_version=0.100.0+1.21

maven_group = eu.pb4

mod_version = 0.9.0-pre.2
mod_version = 0.9.0

minecraft_version_supported = ">=1.20.5-"

packet_tweaker_version = 0.5.4+1.20.6

is_stable = false
is_stable = true
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ public final class PolymerItemUtils {
HideableTooltip.ofNeg(DataComponentTypes.STORED_ENCHANTMENTS, ItemEnchantmentsComponent::isEmpty, ItemEnchantmentsComponent::withShowInTooltip),
HideableTooltip.of(DataComponentTypes.UNBREAKABLE, UnbreakableComponent::withShowInTooltip),
HideableTooltip.of(DataComponentTypes.CAN_BREAK, BlockPredicatesChecker::withShowInTooltip),
HideableTooltip.of(DataComponentTypes.CAN_PLACE_ON, BlockPredicatesChecker::withShowInTooltip)
HideableTooltip.of(DataComponentTypes.CAN_PLACE_ON, BlockPredicatesChecker::withShowInTooltip),
HideableTooltip.of(DataComponentTypes.JUKEBOX_PLAYABLE, JukeboxPlayableComponent::withShowInTooltip)
);

private PolymerItemUtils() {
Expand Down

0 comments on commit 79aa037

Please sign in to comment.