Simplified auto use restore method active value.

This commit is contained in:
MobiusDevelopment
2021-09-19 23:19:03 +00:00
parent 31e2b1f178
commit c8659d9da8
6 changed files with 6 additions and 6 deletions

View File

@@ -14303,7 +14303,7 @@ public class PlayerInstance extends Playable
}
final int options = settings.get(0);
final boolean active = Config.RESUME_AUTO_PLAY ? settings.get(1) == 1 : false;
final boolean active = Config.RESUME_AUTO_PLAY && (settings.get(1) == 1);
final boolean pickUp = settings.get(2) == 1;
final int nextTargetMode = settings.get(3);
final boolean longRange = settings.get(4) == 1;