Fixed Exception error

This commit is contained in:
MarioSpore
2025-10-03 16:40:20 -04:00
parent 67bbde2556
commit 2081912a39

View File

@@ -8,7 +8,7 @@ from .Client import *
from typing import ClassVar from typing import ClassVar
from worlds.AutoWorld import World from worlds.AutoWorld import World
import Options from Options import OptionError
from .Options import GrinchOptions from .Options import GrinchOptions
from .Rules import access_rules_dict from .Rules import access_rules_dict
@@ -31,7 +31,7 @@ class GrinchWorld(World):
def generate_early(self) -> None: #Special conditions changed before generation occurs def generate_early(self) -> None: #Special conditions changed before generation occurs
if self.options.ring_link == 1 and self.options.unlimited_eggs == 1: if self.options.ring_link == 1 and self.options.unlimited_eggs == 1:
raise Options.OptionError("Cannot enable both unlimited rotten eggs and ring links. You can only enable one of these at a time."+ raise OptionError("Cannot enable both unlimited rotten eggs and ring links. You can only enable one of these at a time." +
f"The following player's YAML needs to be fixed: {self.player_name}") f"The following player's YAML needs to be fixed: {self.player_name}")