SPIGOT-5362: Suspicious stews fail isSimilar check

This commit is contained in:
ShaneBeee 2019-10-14 21:03:30 +11:00 committed by md_5
parent d6b3eddf68
commit db98d54df9
2 changed files with 5 additions and 1 deletions

View File

@ -223,7 +223,7 @@ public class CraftMetaSuspiciousStew extends CraftMetaItem implements Suspicious
@Override
boolean notUncommon(CraftMetaItem meta) {
return super.notUncommon(meta) && (meta instanceof CraftMetaPotion || isStewEmpty());
return super.notUncommon(meta) && (meta instanceof CraftMetaSuspiciousStew || isStewEmpty());
}
@Override

View File

@ -405,6 +405,10 @@ public class ItemMetaTest extends AbstractTestingBase {
final ItemStack blank = new ItemStack(Material.STONE);
final ItemStack craftBlank = CraftItemStack.asCraftCopy(blank);
// Check that equality and similarity works for each meta implementation
assertThat(name, provider.stack(), is(provider.stack()));
assertThat(name, provider.stack().isSimilar(provider.stack()), is(true));
downCastTest(name, provider.stack(), blank);
blank.setItemMeta(blank.getItemMeta());
downCastTest(name, provider.stack(), blank);