From f508f93d697b753a598708842d9fcbcb1f4b4214 Mon Sep 17 00:00:00 2001 From: Fabian Dill Date: Fri, 10 Sep 2021 04:11:01 +0200 Subject: [PATCH] Risk of Rain 2: fix lunar item removal affects all following worlds' presets --- worlds/ror2/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/ror2/__init__.py b/worlds/ror2/__init__.py index a0f45346..7b9de9e8 100644 --- a/worlds/ror2/__init__.py +++ b/worlds/ror2/__init__.py @@ -49,7 +49,7 @@ class RiskOfRainWorld(World): "Equipment": self.world.random.randint(0, 50) } else: - junk_pool = item_pool_weights[pool_option] + junk_pool = item_pool_weights[pool_option].copy() else:# generate junk pool from user created presets junk_pool = { "Item Scrap, Green": self.world.green_scrap[self.player].value,