mirror of
https://github.com/FabricMC/fabric.git
synced 2025-09-07 03:39:18 +00:00
23w45a porting fixes (#3421)
This commit is contained in:
@@ -22,6 +22,7 @@ import static net.minecraft.server.command.CommandManager.literal;
|
|||||||
|
|
||||||
import com.mojang.brigadier.context.CommandContext;
|
import com.mojang.brigadier.context.CommandContext;
|
||||||
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
import com.mojang.brigadier.exceptions.CommandSyntaxException;
|
||||||
|
import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
|
||||||
|
|
||||||
import net.minecraft.block.Blocks;
|
import net.minecraft.block.Blocks;
|
||||||
import net.minecraft.command.argument.DimensionArgumentType;
|
import net.minecraft.command.argument.DimensionArgumentType;
|
||||||
@@ -51,6 +52,7 @@ public class FabricDimensionTest implements ModInitializer {
|
|||||||
// The dimension options refer to the JSON-file in the dimension subfolder of the data pack,
|
// The dimension options refer to the JSON-file in the dimension subfolder of the data pack,
|
||||||
// which will always share its ID with the world that is created from it
|
// which will always share its ID with the world that is created from it
|
||||||
private static final RegistryKey<DimensionOptions> DIMENSION_KEY = RegistryKey.of(RegistryKeys.DIMENSION, new Identifier("fabric_dimension", "void"));
|
private static final RegistryKey<DimensionOptions> DIMENSION_KEY = RegistryKey.of(RegistryKeys.DIMENSION, new Identifier("fabric_dimension", "void"));
|
||||||
|
private static final SimpleCommandExceptionType FAILED_EXCEPTION = new SimpleCommandExceptionType(Text.literal("Teleportation failed!"));
|
||||||
|
|
||||||
private static RegistryKey<World> WORLD_KEY = RegistryKey.of(RegistryKeys.WORLD, DIMENSION_KEY.getValue());
|
private static RegistryKey<World> WORLD_KEY = RegistryKey.of(RegistryKeys.WORLD, DIMENSION_KEY.getValue());
|
||||||
|
|
||||||
@@ -110,7 +112,7 @@ public class FabricDimensionTest implements ModInitializer {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
private int swapTargeted(CommandContext<ServerCommandSource> context) {
|
private int swapTargeted(CommandContext<ServerCommandSource> context) throws CommandSyntaxException {
|
||||||
ServerPlayerEntity player = context.getSource().getPlayer();
|
ServerPlayerEntity player = context.getSource().getPlayer();
|
||||||
|
|
||||||
if (player == null) {
|
if (player == null) {
|
||||||
@@ -126,7 +128,7 @@ public class FabricDimensionTest implements ModInitializer {
|
|||||||
FabricDimensions.teleport(player, modWorld, target);
|
FabricDimensions.teleport(player, modWorld, target);
|
||||||
|
|
||||||
if (player.getWorld() != modWorld) {
|
if (player.getWorld() != modWorld) {
|
||||||
throw new RuntimeException("Teleportation failed!");
|
throw FAILED_EXCEPTION.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
modWorld.setBlockState(new BlockPos(0, 100, 0), Blocks.DIAMOND_BLOCK.getDefaultState());
|
modWorld.setBlockState(new BlockPos(0, 100, 0), Blocks.DIAMOND_BLOCK.getDefaultState());
|
||||||
|
@@ -82,7 +82,12 @@ public class FabricBlockSettings extends AbstractBlock.Settings {
|
|||||||
this.instrument(otherAccessor.getInstrument());
|
this.instrument(otherAccessor.getInstrument());
|
||||||
thisAccessor.setReplaceable(otherAccessor.getReplaceable());
|
thisAccessor.setReplaceable(otherAccessor.getReplaceable());
|
||||||
|
|
||||||
// Not copied in vanilla: field definition order
|
// Vanilla did not copy those fields until 23w45a, which introduced
|
||||||
|
// copyShallow method (maintaining the behavior previously used by the copy method)
|
||||||
|
// and the copy method that copies those fields as well. copyShallow is now
|
||||||
|
// deprecated. To maintain compatibility and since this behavior seems to be the
|
||||||
|
// more proper way, this copies all the fields, not just the shallow ones.
|
||||||
|
// Fields are added by field definition order.
|
||||||
this.jumpVelocityMultiplier(otherAccessor.getJumpVelocityMultiplier());
|
this.jumpVelocityMultiplier(otherAccessor.getJumpVelocityMultiplier());
|
||||||
this.drops(otherAccessor.getLootTableId());
|
this.drops(otherAccessor.getLootTableId());
|
||||||
this.allowsSpawning(otherAccessor.getAllowsSpawningPredicate());
|
this.allowsSpawning(otherAccessor.getAllowsSpawningPredicate());
|
||||||
|
@@ -210,6 +210,7 @@ public final class BlockSetTypeBuilder {
|
|||||||
public static BlockSetTypeBuilder copyOf(BlockSetTypeBuilder builder) {
|
public static BlockSetTypeBuilder copyOf(BlockSetTypeBuilder builder) {
|
||||||
BlockSetTypeBuilder copy = new BlockSetTypeBuilder();
|
BlockSetTypeBuilder copy = new BlockSetTypeBuilder();
|
||||||
copy.openableByHand(builder.openableByHand);
|
copy.openableByHand(builder.openableByHand);
|
||||||
|
copy.openableByWindCharge(builder.openableByWindCharge);
|
||||||
copy.buttonActivatedByArrows(builder.buttonActivatedByArrows);
|
copy.buttonActivatedByArrows(builder.buttonActivatedByArrows);
|
||||||
copy.pressurePlateActivationRule(builder.pressurePlateActivationRule);
|
copy.pressurePlateActivationRule(builder.pressurePlateActivationRule);
|
||||||
copy.soundGroup(builder.soundGroup);
|
copy.soundGroup(builder.soundGroup);
|
||||||
@@ -234,6 +235,7 @@ public final class BlockSetTypeBuilder {
|
|||||||
public static BlockSetTypeBuilder copyOf(BlockSetType setType) {
|
public static BlockSetTypeBuilder copyOf(BlockSetType setType) {
|
||||||
BlockSetTypeBuilder copy = new BlockSetTypeBuilder();
|
BlockSetTypeBuilder copy = new BlockSetTypeBuilder();
|
||||||
copy.openableByHand(setType.canOpenByHand());
|
copy.openableByHand(setType.canOpenByHand());
|
||||||
|
copy.openableByWindCharge(setType.canOpenByWindCharge());
|
||||||
copy.buttonActivatedByArrows(setType.canButtonBeActivatedByArrows());
|
copy.buttonActivatedByArrows(setType.canButtonBeActivatedByArrows());
|
||||||
copy.pressurePlateActivationRule(setType.pressurePlateSensitivity());
|
copy.pressurePlateActivationRule(setType.pressurePlateSensitivity());
|
||||||
copy.soundGroup(setType.soundType());
|
copy.soundGroup(setType.soundType());
|
||||||
|
@@ -129,6 +129,7 @@ transitive-accessible field net/minecraft/client/MinecraftClient attackCooldown
|
|||||||
transitive-accessible method net/minecraft/block/Blocks createFlowerPotBlock (Lnet/minecraft/block/Block;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createFlowerPotBlock (Lnet/minecraft/block/Block;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createLeavesBlock (Lnet/minecraft/sound/BlockSoundGroup;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createLeavesBlock (Lnet/minecraft/sound/BlockSoundGroup;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createLogBlock (Lnet/minecraft/block/MapColor;Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createLogBlock (Lnet/minecraft/block/MapColor;Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
||||||
|
transitive-accessible method net/minecraft/block/Blocks createLogBlock (Lnet/minecraft/block/MapColor;Lnet/minecraft/block/MapColor;Lnet/minecraft/sound/BlockSoundGroup;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createNetherStemBlock (Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createNetherStemBlock (Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createStoneButtonBlock ()Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createStoneButtonBlock ()Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createWoodenButtonBlock (Lnet/minecraft/block/BlockSetType;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createWoodenButtonBlock (Lnet/minecraft/block/BlockSetType;)Lnet/minecraft/block/Block;
|
||||||
|
@@ -124,6 +124,7 @@ transitive-accessible field net/minecraft/client/MinecraftClient attackCooldown
|
|||||||
transitive-accessible method net/minecraft/block/Blocks createFlowerPotBlock (Lnet/minecraft/block/Block;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createFlowerPotBlock (Lnet/minecraft/block/Block;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createLeavesBlock (Lnet/minecraft/sound/BlockSoundGroup;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createLeavesBlock (Lnet/minecraft/sound/BlockSoundGroup;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createLogBlock (Lnet/minecraft/block/MapColor;Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createLogBlock (Lnet/minecraft/block/MapColor;Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
||||||
|
transitive-accessible method net/minecraft/block/Blocks createLogBlock (Lnet/minecraft/block/MapColor;Lnet/minecraft/block/MapColor;Lnet/minecraft/sound/BlockSoundGroup;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createNetherStemBlock (Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createNetherStemBlock (Lnet/minecraft/block/MapColor;)Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createStoneButtonBlock ()Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createStoneButtonBlock ()Lnet/minecraft/block/Block;
|
||||||
transitive-accessible method net/minecraft/block/Blocks createWoodenButtonBlock (Lnet/minecraft/block/BlockSetType;)Lnet/minecraft/block/Block;
|
transitive-accessible method net/minecraft/block/Blocks createWoodenButtonBlock (Lnet/minecraft/block/BlockSetType;)Lnet/minecraft/block/Block;
|
||||||
|
Reference in New Issue
Block a user