From b59e52a103b33e67c13e8e0ddc5236edce805458 Mon Sep 17 00:00:00 2001 From: Scipio Wright Date: Tue, 5 May 2026 10:14:19 -0400 Subject: [PATCH] Options: Remove the "" from the start inventory examples (#6165) --------- Co-authored-by: Emily <35015090+EmilyV99@users.noreply.github.com> --- Options.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Options.py b/Options.py index ec5fb2fb7e..47f4b1d45c 100644 --- a/Options.py +++ b/Options.py @@ -1469,7 +1469,7 @@ class NonLocalItems(ItemSet): class StartInventory(ItemDict): - """Start with the specified amount of these items. Example: "Bomb: 1" """ + """Start with the specified amount of these items. Example: {Bomb: 1, Arrow: 3} """ verify_item_name = True display_name = "Start Inventory" rich_text_doc = True @@ -1477,7 +1477,7 @@ class StartInventory(ItemDict): class StartInventoryPool(StartInventory): - """Start with the specified amount of these items and don't place them in the world. Example: "Bomb: 1" + """Start with the specified amount of these items and don't place them in the world. Example: {Bomb: 1, Arrow: 3} The game decides what the replacement items will be. """