1
0
mirror of https://github.com/mcMMO-Dev/mcMMO.git synced 2026-02-20 02:33:15 +01:00

Small error fix - As mentioned by Glitchfinder

This commit is contained in:
TfT_02
2012-11-13 22:14:26 +01:00
parent 1e7fef4557
commit a582b07549
2 changed files with 5 additions and 2 deletions

View File

@@ -105,7 +105,7 @@ public class BlockChecks {
return false;
default:
if (block.getTypeId() == Config.getInstance().getRepairAnvilId() | block.getTypeId() == Config.getInstance().getSalvageAnvilId()) {
if (block.getTypeId() == Config.getInstance().getRepairAnvilId() || block.getTypeId() == Config.getInstance().getSalvageAnvilId()) {
return false;
}
else {