KeyManager: Block remaps on authenticator game state
Similar to 01bdbe5aab, we do not want to
block input when the user is inputting their authenticator code at the
login screen.
This commit is contained in:
@@ -145,6 +145,6 @@ public class KeyManager
|
||||
return true;
|
||||
}
|
||||
|
||||
return client.getGameState() != GameState.LOGIN_SCREEN;
|
||||
return client.getGameState() != GameState.LOGIN_SCREEN && client.getGameState() != GameState.LOGIN_SCREEN_AUTHENTICATOR;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user