From 850295ec67bc061b948be81cb86599f740cd69c8 Mon Sep 17 00:00:00 2001 From: alwaysintreble Date: Thu, 14 Dec 2023 08:15:19 -0600 Subject: [PATCH] use reST format and make the items description one line so that it renders correctly on webhost --- Options.py | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/Options.py b/Options.py index edbb1f228d..311a950499 100644 --- a/Options.py +++ b/Options.py @@ -900,10 +900,12 @@ class ItemSet(OptionSet): class Accessibility(Choice): - """Set rules for reachability of your items/locations. + """ + Set rules for reachability of your items/locations. Full: ensure everything can be reached and acquired. - Minimal: ensure what is needed to reach your goal can be acquired.""" + Minimal: ensure what is needed to reach your goal can be acquired. + """ display_name = "Accessibility" option_full = 0 option_minimal = 2 @@ -912,12 +914,13 @@ class Accessibility(Choice): class ItemsAccessibility(Accessibility): - """Set rules for reachability of your items/locations. + """ + Set rules for reachability of your items/locations. Full: ensure everything can be reached and acquired. - Items: ensure all logically relevant items can be acquired. Some items, such as keys, may be self-locking, and some - locations may be inaccessible. - Minimal: ensure what is needed to reach your goal can be acquired.""" + Items: ensure all logically relevant items can be acquired. Some items, such as keys, may be self-locking, and some locations may be inaccessible. + Minimal: ensure what is needed to reach your goal can be acquired. + """ option_items = 1 default = 1