mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-03 13:42:25 -07:00
SPIGOT-5362: Suspicious stews fail isSimilar check
This commit is contained in:
@@ -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
|
||||
|
@@ -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);
|
||||
|
Reference in New Issue
Block a user