Possibly fixes #296

This commit is contained in:
2023-05-31 17:13:13 +02:00
parent 6f88eecb41
commit 9d48374d28

View File

@@ -172,6 +172,11 @@ public class PortalHandler {
portalLocation.setButtonVector(controlVector); portalLocation.setButtonVector(controlVector);
} }
} }
//If our gate has been found, look no further
if (gate != null) {
break;
}
} }
return gate; return gate;