Merge pull request #416 from nevercast/bug-406

BUGFIX 406: Placing signs on Facades
This commit is contained in:
SirSengir 2012-11-10 06:11:44 -08:00
commit 97a7391166

View file

@ -360,7 +360,9 @@ public class BlockGenericPipe extends BlockContainer {
} else if (entityplayer.getCurrentEquippedItem() == null) {
// Fall through the end of the test
} else if (entityplayer.getCurrentEquippedItem().itemID == Item.sign.shiftedIndex){
// Sign will be placed anyway, so lets show the sign gui
return false;
} else if (entityplayer.getCurrentEquippedItem().getItem() instanceof ItemPipe)
return false;
else if (entityplayer.getCurrentEquippedItem().getItem() instanceof IToolWrench) {