fix logic error from refactor

This commit is contained in:
drobotk 2026-03-06 12:19:27 +01:00
parent 2ca6f943e4
commit 3c154e1119
No known key found for this signature in database
GPG key ID: D53DB3B14C514056

View file

@ -171,7 +171,7 @@ public final class MiniplayerPatch {
@Override
public boolean isAvailable() {
MiniplayerType type = Settings.MINIPLAYER_TYPE.get();
return type == MODERN_4;
return type == MODERN_4 || type == MODERN_3;
}
@Override