Fix NPE on Direct Select from GetDirectlyHeldThings

This commit is contained in:
2023-07-15 08:35:40 -05:00
parent 8220569701
commit d025c37fc1

View File

@@ -176,7 +176,8 @@ namespace HydroponicsExpanded {
}
public ThingOwner GetDirectlyHeldThings() {
return null;
// TODO: Why was the original mod returning 'null'? Is this the intended usage? Research.
return _innerContainer;
}
public override void ExposeData() {