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

Change else if to else

This commit is contained in:
svr333 2020-10-05 19:37:12 +02:00
parent 983bc103d3
commit ff0c2b7984

View File

@ -77,7 +77,7 @@ public class TableSaw extends MultiBlockMachine {
Optional<Material> planks = MaterialConverter.getPlanksFromLog(item.getType()); Optional<Material> planks = MaterialConverter.getPlanksFromLog(item.getType());
output = new ItemStack(planks.get(), 8); output = new ItemStack(planks.get(), 8);
} }
else if (itemIsAPlank) { else {
output = new ItemStack(Material.STICK, 4); output = new ItemStack(Material.STICK, 4);
} }