From 754e0a0de47d564840c9949fb5e1b6214afcff05 Mon Sep 17 00:00:00 2001 From: Aaron Wagener Date: Thu, 31 Jul 2025 14:42:42 -0500 Subject: [PATCH] Core: hard deprecate per_slot_randoms (#3382) Co-authored-by: black-sliver <59490463+black-sliver@users.noreply.github.com> --- BaseClasses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BaseClasses.py b/BaseClasses.py index 10d05406..4b2c6643 100644 --- a/BaseClasses.py +++ b/BaseClasses.py @@ -183,7 +183,7 @@ class MultiWorld(): set_player_attr('completion_condition', lambda state: True) self.worlds = {} self.per_slot_randoms = Utils.DeprecateDict("Using per_slot_randoms is now deprecated. Please use the " - "world's random object instead (usually self.random)") + "world's random object instead (usually self.random)", True) self.plando_options = PlandoOptions.none def get_all_ids(self) -> Tuple[int, ...]: