From b7bca84e799ca4ad7ca11b3f9c56f2d8f1db8e99 Mon Sep 17 00:00:00 2001 From: NewSoupVi <57900059+NewSoupVi@users.noreply.github.com> Date: Fri, 11 Jul 2025 23:27:59 +0200 Subject: [PATCH] Update Utils.py --- Utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Utils.py b/Utils.py index 84d3a33dc7..5697bb162a 100644 --- a/Utils.py +++ b/Utils.py @@ -442,6 +442,7 @@ class RestrictedUnpickler(pickle.Unpickler): if module == "builtins" and name in safe_builtins: return getattr(builtins, name) # used by OptionCounter + # necessary because the actual Options class instances are pickled when transfered to WebHost generation pool if module == "collections" and name == "Counter": return collections.Counter # used by MultiServer -> savegame/multidata