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

5
.gitignore vendored
View File

@ -39,4 +39,7 @@
*.jar *.jar
# Atlassian Stuff # Atlassian Stuff
/atlassian-ide-plugin.xml /atlassian-ide-plugin.xml
src/.DS_Store
src/main/.DS_Store

View File

@ -105,7 +105,7 @@ public class BlockChecks {
return false; return false;
default: 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; return false;
} }
else { else {