mirror of
https://github.com/Ellpeck/NaturesAura.git
synced 2024-11-05 04:49:10 +01:00
actually invert this
This commit is contained in:
parent
5873bd99e8
commit
007e6fe8d0
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ public class BasicAuraContainer implements IAuraContainer {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isAcceptableType(IAuraType type) {
|
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) {
|
public void writeNBT(NBTTagCompound compound) {
|
||||||
|
|
Loading…
Reference in a new issue