From ecb1e0b74b78fc25cc90a476b83528e3b0d234dc Mon Sep 17 00:00:00 2001 From: Zach Parks Date: Fri, 21 Jul 2023 19:31:23 -0500 Subject: [PATCH] Core: Add display name for `item_links` Option. (#1952) --- Options.py | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Options.py b/Options.py index 5e638a46..e106be5b 100644 --- a/Options.py +++ b/Options.py @@ -1,13 +1,15 @@ from __future__ import annotations + import abc import logging -from copy import deepcopy import math import numbers -import typing import random +import typing +from copy import deepcopy + +from schema import And, Optional, Or, Schema -from schema import Schema, And, Or, Optional from Utils import get_fuzzy_results if typing.TYPE_CHECKING: @@ -949,6 +951,7 @@ class DeathLink(Toggle): class ItemLinks(OptionList): """Share part of your item pool with other players.""" + display_name = "Item Links" default = [] schema = Schema([ {