Update to Minecraft 1.13-pre7

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot
2018-07-15 10:00:00 +10:00
parent debc7172fd
commit 767e4f6ccf
199 changed files with 8301 additions and 3637 deletions

View File

@@ -498,7 +498,7 @@ public abstract class ConfigurationSectionTest {
public void testGetItemStack_String() {
ConfigurationSection section = getConfigurationSection();
String key = "exists";
ItemStack value = new ItemStack(Material.WOOD, 50, (short) 2);
ItemStack value = new ItemStack(Material.ACACIA_WOOD, 50);
section.set(key, value);
@@ -510,7 +510,7 @@ public abstract class ConfigurationSectionTest {
public void testGetItemStack_String_ItemStack() {
ConfigurationSection section = getConfigurationSection();
String key = "exists";
ItemStack value = new ItemStack(Material.WOOD, 50, (short) 2);
ItemStack value = new ItemStack(Material.ACACIA_WOOD, 50);
ItemStack def = new ItemStack(Material.STONE, 1);
section.set(key, value);
@@ -523,7 +523,7 @@ public abstract class ConfigurationSectionTest {
public void testIsItemStack() {
ConfigurationSection section = getConfigurationSection();
String key = "exists";
ItemStack value = new ItemStack(Material.WOOD, 50, (short) 2);
ItemStack value = new ItemStack(Material.ACACIA_WOOD, 50);
section.set(key, value);