diff --git a/src/main/java/emu/grasscutter/auth/DefaultAuthenticators.java b/src/main/java/emu/grasscutter/auth/DefaultAuthenticators.java index 7c13fa1a5..8fea0253b 100644 --- a/src/main/java/emu/grasscutter/auth/DefaultAuthenticators.java +++ b/src/main/java/emu/grasscutter/auth/DefaultAuthenticators.java @@ -215,12 +215,7 @@ public final class DefaultAuthenticators { request.getResponse().send("Authentication is not available with the default authentication method."); } - @Override public void handleDesktopRedirection(AuthenticationRequest request) { - assert request.getResponse() != null; - request.getResponse().send("Authentication is not available with the default authentication method."); - } - - @Override public void handleMobileRedirection(AuthenticationRequest request) { + @Override public void handleRedirection(AuthenticationRequest request, ClientType type) { assert request.getResponse() != null; request.getResponse().send("Authentication is not available with the default authentication method."); }