mirror of
https://github.com/songoda/EpicHoppers.git
synced 2024-11-09 20:21:41 +01:00
AutoCrafting isSimilar durability check fix
This commit is contained in:
parent
1be1a0f26b
commit
0dff6dabb3
@ -175,7 +175,7 @@ public class ModuleAutoCrafting implements Module {
|
||||
if (EpicHoppers.getInstance().isServerVersionAtLeast(ServerVersion.V1_13)) {
|
||||
return is1.getType() == is2.getType();
|
||||
} else {
|
||||
return is1.getType() == is2.getType() || is1.getDurability() == is2.getDurability();
|
||||
return is1.getType() == is2.getType() && is1.getDurability() == is2.getDurability();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user