Files
Archipelago/worlds/terraria/Options.py
SolventMercury 3aacaffe6b Add Terraria Support
But it works this time.
Hopefully.
Client still needs to be caught up.
2021-09-08 05:58:34 -07:00

8 lines
252 B
Python

import typing
from Options import Choice, Option, Toggle, Range
terraria_options: typing.Dict[str, type(Option)] = {
"include_hardmode_achievements": Toggle,
"include_insane_achievements": Toggle,
"include_postgame_achievements": Toggle,
}