remove redundant check

This commit is contained in:
Gerrygames 2019-07-23 12:37:57 +02:00
parent ba4d64cb56
commit e33cb23923

View File

@ -27,9 +27,7 @@ public class BoundingBoxFixer {
Field boundingBoxNorthField, boundingBoxSouthField, boundingBoxWestField, boundingBoxEastField; Field boundingBoxNorthField, boundingBoxSouthField, boundingBoxWestField, boundingBoxEastField;
if (ProtocolRegistry.SERVER_PROTOCOL < 107) { if (ProtocolRegistry.SERVER_PROTOCOL <= 340) {
return;
} else if (ProtocolRegistry.SERVER_PROTOCOL <= 340) {
boundingBoxEastField = ReflectionAPI.getFieldAccessible(blockLadderClass, "b"); boundingBoxEastField = ReflectionAPI.getFieldAccessible(blockLadderClass, "b");
boundingBoxWestField = ReflectionAPI.getFieldAccessible(blockLadderClass, "c"); boundingBoxWestField = ReflectionAPI.getFieldAccessible(blockLadderClass, "c");
boundingBoxSouthField = ReflectionAPI.getFieldAccessible(blockLadderClass, "d"); boundingBoxSouthField = ReflectionAPI.getFieldAccessible(blockLadderClass, "d");