make isFrontEnd public

This commit is contained in:
creeper123123321 2020-06-25 11:41:38 -03:00
parent 1ab0cd07af
commit 73eef1727a

View File

@ -42,7 +42,7 @@ public class ViaConnectionManager {
* Frontend connections will have the UUID stored. Override this if your platform isn't always frontend.
* UUIDs can't be duplicate between frontend connections.
*/
protected boolean isFrontEnd(UserConnection conn) {
public boolean isFrontEnd(UserConnection conn) {
return true;
}