From 7b21121df1d7ed5f08dc99a5d552cd70d51346a4 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Sat, 21 Sep 2024 23:00:46 +0200 Subject: [PATCH] Update AutoWorld.py --- worlds/AutoWorld.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worlds/AutoWorld.py b/worlds/AutoWorld.py index 8b7e127cdf..c5f6047a95 100644 --- a/worlds/AutoWorld.py +++ b/worlds/AutoWorld.py @@ -111,7 +111,7 @@ class AutoLogicRegister(type): assert callable(function) or "init_mixin" in dct, ( f"{name} defined class variable {item_name} without also having init_mixin.\n\n" "Explanation:\n" - "Class variables that will be mutated need to be ininialized as instance variables in init_mixin.\n" + "Class variables that will be mutated need to be inintialized as instance variables in init_mixin.\n" "If your LogicMixin variables aren't actually mutable / you don't intend to mutate them, " "there is no point in using LogixMixin.\n" "LogicMixin exists to track custom state variables that change when items are collected/removed."