From 8384a23fe2ef38986898d49c5a1278c572a68766 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Thu, 8 May 2025 14:54:11 +0200 Subject: [PATCH] Institute limit on StartInventory --- Options.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Options.py b/Options.py index bea3804d1e..d2e483d0b1 100644 --- a/Options.py +++ b/Options.py @@ -1349,10 +1349,11 @@ class NonLocalItems(ItemSet): class StartInventory(ItemDict): - """Start with these items.""" + """Start with these items. Capped at 30000 per item.""" verify_item_name = True display_name = "Start Inventory" rich_text_doc = True + max = 30000 class StartInventoryPool(StartInventory):