Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ public partial class MapWarpAttribute : MapAttribute
public bool ChangeInstance { get; set; } = false;

[EditorLabel("Warping", "InstanceType")]
[EditorDictionary("Mapping", "InstanceTypes")]
[EditorDictionary("MapInstance", "InstanceTypes")]
public MapInstanceType InstanceType { get; set; } = MapInstanceType.Overworld;

[EditorLabel("Attributes", "WarpSound")]
Expand Down
2 changes: 1 addition & 1 deletion Intersect.Editor/Localization/Strings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4209,7 +4209,7 @@ public partial struct MapGrid
public partial struct MapInstance
{
[JsonProperty(NullValueHandling = NullValueHandling.Ignore)]
public static Dictionary<MapInstanceType, LocalizedString> InstanceTypes = new Dictionary<MapInstanceType, LocalizedString>
public static LocaleDictionary<MapInstanceType, LocalizedString> InstanceTypes = new LocaleDictionary<MapInstanceType, LocalizedString>
{
{MapInstanceType.Overworld, @"Overworld" },
{MapInstanceType.Personal, @"Personal" },
Expand Down
Loading