From daf11510b2d1a851229dcb504505a7ffe494e4a3 Mon Sep 17 00:00:00 2001 From: Marechal-l Date: Tue, 27 Sep 2022 16:25:41 +0200 Subject: [PATCH] DS3: Fix item name in rule --- worlds/dark_souls_3/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/dark_souls_3/__init__.py b/worlds/dark_souls_3/__init__.py index 7b0106d910..8d58de1221 100644 --- a/worlds/dark_souls_3/__init__.py +++ b/worlds/dark_souls_3/__init__.py @@ -210,7 +210,7 @@ class DarkSouls3World(World): set_rule(self.world.get_location("ID: Covetous Gold Serpent Ring", self.player), lambda state: state.has("Old Cell Key", self.player)) set_rule(self.world.get_location("ID: Karla's Ashes", self.player), - lambda state: state.has("Jailers Key Ring", self.player)) + lambda state: state.has("Jailer's Key Ring", self.player)) black_hand_gotthard_corpse_rule = lambda state: \ (state.can_reach("AL: Cinders of a Lord - Aldrich", "Location", self.player) and state.can_reach("PC: Cinders of a Lord - Yhorm the Giant", "Location", self.player))