Skip to content
Open
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
3 changes: 3 additions & 0 deletions Module/ExtendedVariantSerializationUtils.cs
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,9 @@ public static Dictionary<Variant, object> ToSavableFormat(Dictionary<Variant, ob
case DashRestriction.DashRestrictionType castValue:
convertedVariants[v] = "DashRestrictionType:" + castValue;
break;
case DashbounceControl.DashbounceControlMode castValue:
convertedVariants[v] = "DashbounceControlMode:" + castValue;
break;
default:
Logger.Log(LogLevel.Error, "ExtendedVariantMode/ExtendedVariantModule", "Cannot serialize value of type " + value.GetType() + "!");
break;
Expand Down
2 changes: 1 addition & 1 deletion everest.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- Name: ExtendedVariantMode
Version: 0.50.3
Version: 0.50.4
DLL: bin/ExtendedVariantMode.dll
Dependencies:
- Name: Everest
Expand Down