Core: Add display name for `item_links` Option. (#1952)
This commit is contained in:
parent
f8e2d7f503
commit
ecb1e0b74b
|
@ -1,13 +1,15 @@
|
||||||
from __future__ import annotations
|
from __future__ import annotations
|
||||||
|
|
||||||
import abc
|
import abc
|
||||||
import logging
|
import logging
|
||||||
from copy import deepcopy
|
|
||||||
import math
|
import math
|
||||||
import numbers
|
import numbers
|
||||||
import typing
|
|
||||||
import random
|
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
|
from Utils import get_fuzzy_results
|
||||||
|
|
||||||
if typing.TYPE_CHECKING:
|
if typing.TYPE_CHECKING:
|
||||||
|
@ -949,6 +951,7 @@ class DeathLink(Toggle):
|
||||||
|
|
||||||
class ItemLinks(OptionList):
|
class ItemLinks(OptionList):
|
||||||
"""Share part of your item pool with other players."""
|
"""Share part of your item pool with other players."""
|
||||||
|
display_name = "Item Links"
|
||||||
default = []
|
default = []
|
||||||
schema = Schema([
|
schema = Schema([
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue