(78fa52fb7) Add a bunch of null checks, which should fix the issues with shuttles.
This commit is contained in:
+4
@@ -58,6 +58,10 @@ namespace Barotrauma
|
||||
{
|
||||
if (batteryList == null)
|
||||
{
|
||||
if (character == null || character.Submarine == null)
|
||||
{
|
||||
return new PowerContainer[0];
|
||||
}
|
||||
batteryList = character.Submarine.GetItems(true).Select(i => i.GetComponent<PowerContainer>()).Where(b => b != null);
|
||||
}
|
||||
return batteryList;
|
||||
|
||||
Reference in New Issue
Block a user