mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-22 02:25:28 +01:00
SPIGOT-5362: Suspicious stews fail isSimilar check
This commit is contained in:
parent
d6b3eddf68
commit
db98d54df9
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user