Options: Remove the "" from the start inventory examples (#6165)

---------

Co-authored-by: Emily <35015090+EmilyV99@users.noreply.github.com>
This commit is contained in:
Scipio Wright
2026-05-05 10:14:19 -04:00
committed by GitHub
parent 6d9d340c71
commit b59e52a103
+2 -2
View File
@@ -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.
"""