Skip to content

Commit 064361a

Browse files
committed
Almost forgot to push bird shrink fix.
1 parent 7b34e8f commit 064361a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

common/src/main/java/generations/gg/generations/core/generationscore/common/world/level/block/shrines/BirdShrineBlock.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public BirdShrineBlock(Properties materialIn, ResourceLocation model, RegistrySu
5353
if (imbuedStack.isEmpty() || allowedImbuedItems.stream().noneMatch(a -> imbuedStack.is(item -> item.is(a)))) return InteractionResult.PASS;
5454
var pokemonProperties = getProperties(imbuedStack);
5555

56-
if (InteractShrineBlock.isActive(state) && stack.getDamageValue() >= stack.getMaxDamage() && pokemonProperties != null) {
56+
if (!InteractShrineBlock.isActive(state) && stack.getDamageValue() >= stack.getMaxDamage() && pokemonProperties != null) {
5757
InteractShrineBlock.toggleActive(level, pos);
5858
level.playSound(null, pos, GenerationsSounds.LUGIA_SHRINE_SONG.get(), SoundSource.BLOCKS);
5959

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ flywheel_forge_version=0.6.10-7
2424
parchment=2023.09.03
2525

2626
WTHIT=8.15.2+
27-
rareCandy=2.11.25
27+
rareCandy=2.11.26
2828

2929
recipe_viewer=rei
3030
rei=12.0.674

0 commit comments

Comments
 (0)