|
6 | 6 | import java.util.Locale;
|
7 | 7 | import java.util.Map;
|
8 | 8 | import java.util.function.Consumer;
|
| 9 | +import java.util.function.Predicate; |
9 | 10 | import net.kyori.adventure.text.Component;
|
10 | 11 | import org.bukkit.Bukkit;
|
11 | 12 | import org.bukkit.Material;
|
@@ -57,7 +58,7 @@ public class ItemStack implements Cloneable, ConfigurationSerializable, Translat
|
57 | 58 | */
|
58 | 59 | @org.jetbrains.annotations.Contract(value = "_, _ -> new", pure = true)
|
59 | 60 | public static @NotNull ItemStack of(final @NotNull Material type, final int amount) {
|
60 |
| - Preconditions.checkArgument(type.asItemType() != null, type + " isn't an item"); |
| 61 | + Preconditions.checkArgument(type.asItemType() != null, "%s isn't an item", type); |
61 | 62 | Preconditions.checkArgument(amount > 0, "amount must be greater than 0");
|
62 | 63 | return java.util.Objects.requireNonNull(type.asItemType(), type + " is not an item").createItemStack(amount); // Paper - delegate
|
63 | 64 | }
|
@@ -1306,6 +1307,31 @@ public void resetData(final io.papermc.paper.datacomponent.@NotNull DataComponen
|
1306 | 1307 | this.craftDelegate.resetData(type);
|
1307 | 1308 | }
|
1308 | 1309 |
|
| 1310 | + /** |
| 1311 | + * Copies component values and component removals from the provided ItemStack. |
| 1312 | + * <p> |
| 1313 | + * Example: |
| 1314 | + * <pre>{@code |
| 1315 | + * Set<DataComponentType> types = Set.of( |
| 1316 | + * DataComponentTypes.CONSUMABLE, |
| 1317 | + * DataComponentTypes.ENCHANTMENT_GLINT_OVERRIDE, |
| 1318 | + * DataComponentTypes.RARITY |
| 1319 | + * ); |
| 1320 | + * |
| 1321 | + * ItemStack source = ItemStack.of(Material.ENCHANTED_GOLDEN_APPLE); |
| 1322 | + * ItemStack target = ItemStack.of(Material.GOLDEN_CARROT); |
| 1323 | + * |
| 1324 | + * target.copyDataFrom(source, types::contains); |
| 1325 | + * }</pre> |
| 1326 | + * |
| 1327 | + * @param source the item stack to copy from |
| 1328 | + * @param filter predicate for which components to copy |
| 1329 | + */ |
| 1330 | + @org.jetbrains.annotations.ApiStatus.Experimental |
| 1331 | + public void copyDataFrom(final @NotNull ItemStack source, final @NotNull Predicate<io.papermc.paper.datacomponent.@NotNull DataComponentType> filter) { |
| 1332 | + this.craftDelegate.copyDataFrom(source, filter); |
| 1333 | + } |
| 1334 | + |
1309 | 1335 | /**
|
1310 | 1336 | * Checks if the data component type is overridden from the default for the
|
1311 | 1337 | * item type.
|
|
0 commit comments