From 7ec0b5fea20aa94f87b700917be8f501ca2258db Mon Sep 17 00:00:00 2001 From: Prometheus3375 <35541026+Prometheus3375@users.noreply.github.com> Date: Fri, 19 Jul 2024 07:10:23 +0300 Subject: [PATCH] [config] Fix typo --- solve/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/solve/config.py b/solve/config.py index e124aa3..6acce8b 100644 --- a/solve/config.py +++ b/solve/config.py @@ -62,7 +62,7 @@ def encounter_data(self, /) -> tuple[Combination, Combination, AliasMappingType] held = self.held_shapes statues = Combination( left=Node.from_inner_and_other(inner[0], held[0] - inner[0]), - middle=Node.from_inner_and_other(inner[1], held[1] - inner[2]), + middle=Node.from_inner_and_other(inner[1], held[1] - inner[1]), right=Node.from_inner_and_other(inner[2], held[2] - inner[2]), )