From 5a6ae81f88bb4c776c899c8e9f8620f2c8c42498 Mon Sep 17 00:00:00 2001 From: tom-overton Date: Fri, 21 Oct 2022 11:04:39 -0700 Subject: Better message for insanely old settings --- src/com/sneed/pkrandom/Settings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/com/sneed/pkrandom/Settings.java b/src/com/sneed/pkrandom/Settings.java index 7bbff05..9033d21 100644 --- a/src/com/sneed/pkrandom/Settings.java +++ b/src/com/sneed/pkrandom/Settings.java @@ -336,7 +336,7 @@ public class Settings { } int version = ByteBuffer.wrap(versionBytes).getInt(); if (((version >> 24) & 0xFF) > 0 && ((version >> 24) & 0xFF) <= 172) { - throw new UnsupportedOperationException("The settings file is old and must be updated. Press Settings -> \"Update Pre-3.0.0 Settings File\" to update."); + throw new UnsupportedOperationException("The settings file is too old to update. Please download v4.0.2 of the randomizer (or earlier) to update it."); } if (version > VERSION) { throw new UnsupportedOperationException("Cannot read settings from a newer version of the randomizer."); -- cgit v1.2.3