1
mirror of https://github.com/StarWishsama/Slimefun4.git synced 2024-09-20 11:45:51 +00:00

Added support for all wooden fences in Multiblock structures

This commit is contained in:
TheBusyBiscuit 2019-10-05 23:49:11 +02:00
parent 7800058ed1
commit da7eff0d87

View File

@ -78,6 +78,10 @@ public class MultiBlock {
return Tag.LOGS.isTagged(a); return Tag.LOGS.isTagged(a);
} }
if (Tag.WOODEN_FENCES.isTagged(b)) {
return Tag.WOODEN_FENCES.isTagged(a);
}
if (b != a) { if (b != a) {
return false; return false;
} }