makes GetDocks and FoundOrganics public (#13260)

This commit is contained in:
Checkraze
2023-01-01 01:44:30 -05:00
committed by GitHub
parent 50f23ebf13
commit 1edd00e50c
2 changed files with 2 additions and 2 deletions

View File

@@ -534,7 +534,7 @@ public sealed partial class CargoSystem
return FoundOrganics(component.Owner, mobQuery, xformQuery); return FoundOrganics(component.Owner, mobQuery, xformQuery);
} }
private bool FoundOrganics(EntityUid uid, EntityQuery<MobStateComponent> mobQuery, EntityQuery<TransformComponent> xformQuery) public bool FoundOrganics(EntityUid uid, EntityQuery<MobStateComponent> mobQuery, EntityQuery<TransformComponent> xformQuery)
{ {
var xform = xformQuery.GetComponent(uid); var xform = xformQuery.GetComponent(uid);
var childEnumerator = xform.ChildEnumerator; var childEnumerator = xform.ChildEnumerator;

View File

@@ -379,7 +379,7 @@ public sealed partial class ShuttleSystem
_commsConsole.UpdateCommsConsoleInterface(); _commsConsole.UpdateCommsConsoleInterface();
} }
private List<DockingComponent> GetDocks(EntityUid uid) public List<DockingComponent> GetDocks(EntityUid uid)
{ {
var result = new List<DockingComponent>(); var result = new List<DockingComponent>();