From de58cb03da9f3e7c67f5642c427175839234240b Mon Sep 17 00:00:00 2001 From: qwint Date: Tue, 7 Jan 2025 16:24:19 -0500 Subject: [PATCH] Core: Pickle hints by value (#4441) --- NetUtils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetUtils.py b/NetUtils.py index 64a778c5..d58bbe81 100644 --- a/NetUtils.py +++ b/NetUtils.py @@ -10,7 +10,7 @@ import websockets from Utils import ByValue, Version -class HintStatus(enum.IntEnum): +class HintStatus(ByValue, enum.IntEnum): HINT_FOUND = 0 HINT_UNSPECIFIED = 1 HINT_NO_PRIORITY = 10