Skip to content

Commit

Permalink
23w13a
Browse files Browse the repository at this point in the history
  • Loading branch information
gnembon committed Mar 29, 2023
1 parent 23b7aa0 commit 4171f9b
Show file tree
Hide file tree
Showing 7 changed files with 31 additions and 9 deletions.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check https://fabricmc.net/develop/
minecraft_version=23w12a
minecraft_version=23w13a
loader_version=0.14.18
jsr305_version=3.0.2
fabric_version=0.76.0+1.19.4
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
package carpet.mixins;

import carpet.CarpetSettings;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.BuddingAmethystBlock;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.material.PushReaction;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

@Mixin(BlockBehaviour.BlockStateBase.class)
public abstract class BlockBehaviourBlockStateBase_mixin
{
@Shadow public abstract Block getBlock();

@Inject(method = "getPistonPushReaction", at = @At("HEAD"), cancellable = true)
private void onGetPistonPushReaction(CallbackInfoReturnable<PushReaction> cir)
{
if (CarpetSettings.movableAmethyst && getBlock() instanceof BuddingAmethystBlock)
{
cir.setReturnValue(PushReaction.NORMAL);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,6 @@ public BuddingAmethystBlock_movableAmethystMixin(Properties settings) {
super(settings);
}

@Inject(at = @At("HEAD"), method = "getPistonPushReaction(Lnet/minecraft/world/level/block/state/BlockState;)Lnet/minecraft/world/level/material/PushReaction;", cancellable = true)
void getPistonBehavior(BlockState state, CallbackInfoReturnable<PushReaction> cir) {
if (CarpetSettings.movableAmethyst) cir.setReturnValue(PushReaction.NORMAL);
}

@Override
public void playerDestroy(Level world, Player player, BlockPos pos, BlockState state, @Nullable BlockEntity blockEntity, ItemStack stack) {
super.playerDestroy(world, player, pos, state, blockEntity, stack);
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/script/api/WorldAccess.java
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ else if (!("any".equals(statusString)))
booleanStateTest(c, "liquid", lv, (s, p) -> !s.getFluidState().isEmpty()));

expression.addContextFunction("flammable", -1, (c, t, lv) ->
booleanStateTest(c, "flammable", lv, (s, p) -> s.getMaterial().isFlammable()));
booleanStateTest(c, "flammable", lv, (s, p) -> s.ignitedByLava()));

expression.addContextFunction("transparent", -1, (c, t, lv) ->
booleanStateTest(c, "transparent", lv, (s, p) -> !s.getMaterial().isSolid()));
Expand Down
1 change: 0 additions & 1 deletion src/main/java/carpet/script/utils/Colors.java
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,6 @@ public class Colors
entry(Material.SPONGE , "sponge" ),
entry(Material.SHULKER_SHELL , "shulker" ),
entry(Material.WOOD , "wood" ),
entry(Material.NETHER_WOOD , "nether_wood" ),
entry(Material.BAMBOO_SAPLING , "shoots" ),
entry(Material.BAMBOO , "bamboo" ),
entry(Material.WOOL , "wool" ),
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/carpet/utils/BlockInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public static List<Component> blockInfo(BlockPos pos, ServerLevel world)
lst.add(Messenger.s(String.format(" - Blocks movement on land: %s", !state.isPathfindable(world,pos, PathComputationType.LAND))));
lst.add(Messenger.s(String.format(" - Blocks movement in air: %s", !state.isPathfindable(world,pos, PathComputationType.AIR))));
lst.add(Messenger.s(String.format(" - Blocks movement in liquids: %s", !state.isPathfindable(world,pos, PathComputationType.WATER))));
lst.add(Messenger.s(String.format(" - Can burn: %s", material.isFlammable())));
lst.add(Messenger.s(String.format(" - Can burn: %s", state.ignitedByLava())));
lst.add(Messenger.s(String.format(" - Requires a tool: %s", !material.isReplaceable()))); //?maybe
lst.add(Messenger.s(String.format(" - Hardness: %.2f", state.getDestroySpeed(world, pos))));
lst.add(Messenger.s(String.format(" - Blast resistance: %.2f", block.getExplosionResistance())));
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/carpet.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,7 @@
"CollectingNeighborUpdaterAccessor",

"BlockBehaviour_customStickyMixin",
"BlockBehaviourBlockStateBase_mixin",
"ChainBlock_customStickyMixin",
"ChestBlock_customStickyMixin",
"HoneyBlock_customStickyMixin",
Expand Down

0 comments on commit 4171f9b

Please sign in to comment.