From 24ac3de12586ce1cfb47e371b9fa7a91e3f3b933 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Thu, 28 Dec 2023 14:30:10 +0100 Subject: [PATCH] Factorio: "improve" default start items (#2588) Makes it less likely that people kill themselves via pollution and gives them some healing items they may not even know about. --- worlds/factorio/Options.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/factorio/Options.py b/worlds/factorio/Options.py index b72d57ad..3429ebbd 100644 --- a/worlds/factorio/Options.py +++ b/worlds/factorio/Options.py @@ -210,7 +210,7 @@ class RecipeIngredientsOffset(Range): class FactorioStartItems(OptionDict): """Mapping of Factorio internal item-name to amount granted on start.""" display_name = "Starting Items" - default = {"burner-mining-drill": 19, "stone-furnace": 19} + default = {"burner-mining-drill": 4, "stone-furnace": 4, "raw-fish": 50} class FactorioFreeSampleBlacklist(OptionSet):