Skip to content

Commit

Permalink
Core: Add display name for item_links Option. (ArchipelagoMW#1952)
Browse files Browse the repository at this point in the history
  • Loading branch information
ThePhar authored and Jouramie committed Feb 28, 2024
1 parent a7ad230 commit 960bf35
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Options.py
Original file line number Diff line number Diff line change
@@ -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:
Expand Down Expand Up @@ -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([
{
Expand Down

0 comments on commit 960bf35

Please sign in to comment.