Fix nullability in ViewVariablesInstance onValueChanged tuple action

This commit is contained in:
DrSmugleaf
2021-05-04 12:08:53 +02:00
parent a0c0a722c9
commit 68d9e13edf

View File

@@ -58,7 +58,7 @@ namespace Robust.Client.ViewVariables
var styleOther = false;
var type = obj.GetType();
var members = new List<(MemberInfo, VVAccess, object? value, Action<object, bool> onValueChanged, Type)>();
var members = new List<(MemberInfo, VVAccess, object? value, Action<object?, bool> onValueChanged, Type)>();
foreach (var fieldInfo in type.GetAllFields())
{