From 6a6fb91acb6a4b6fa4cf1f2c3b8cddad331f33be Mon Sep 17 00:00:00 2001 From: Martin Michelsen Date: Thu, 28 Sep 2023 15:44:18 -0700 Subject: [PATCH] explain overall_time_limit more clearly --- src/Episode3/DataIndexes.hh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Episode3/DataIndexes.hh b/src/Episode3/DataIndexes.hh index d0e3d73b..87060e82 100644 --- a/src/Episode3/DataIndexes.hh +++ b/src/Episode3/DataIndexes.hh @@ -863,7 +863,9 @@ struct Rules { // When this structure is used in a map/quest definition, FF in any of these // fields means the user is allowed to override it. Any non-FF fields are // fixed for the map/quest and cannot be overridden. - /* 00 */ uint8_t overall_time_limit = 0; // In increments of 5 mins; 0 = unlimited + // The overall time limit is specified in increments of 5 minutes; that is, + // 1 means 5 minutes, 2 means 10 minutes, etc. 0 means no overall time limit. + /* 00 */ uint8_t overall_time_limit = 0; /* 01 */ uint8_t phase_time_limit = 0; // In seconds; 0 = unlimited /* 02 */ AllowedCards allowed_cards = AllowedCards::ALL; /* 03 */ uint8_t min_dice = 1; // 0 = default (1)