actually invert this

This commit is contained in:
Ellpeck 2019-02-16 21:35:55 +01:00
parent 5873bd99e8
commit 007e6fe8d0

View file

@ -49,7 +49,7 @@ public class BasicAuraContainer implements IAuraContainer {
@Override
public boolean isAcceptableType(IAuraType type) {
return this.type == null || this.type.isSimilar(type);
return this.type == null || type.isSimilar(this.type);
}
public void writeNBT(NBTTagCompound compound) {