mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-25 09:41:29 +01:00
SPIGOT-5362: Suspicious stews fail isSimilar check
By: ShaneBeee <shanebolenback@me.com>
This commit is contained in:
parent
a0a9f6007a
commit
cf59b7f501
@ -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