mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-14 19:29:36 +01:00
Fix nullability in ViewVariablesInstance onValueChanged tuple action
This commit is contained in:
@@ -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())
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user