Can someone explain why this code doesn't function:
Because for some reason those three groups (vents,innerdoors,outerdoors) are always null. And yes the group names are the same, and yes...
Someone explain this
Code:
public Program() {
AirlockState = true;
GridTerminalSystem.GetBlockGroupWithName("Airlock Vents").GetBlocks(Vents);
GridTerminalSystem.GetBlockGroupWithName("Airlock In").GetBlocks(InnerDoors);
GridTerminalSystem.GetBlockGroupWithName("Airlock Out").GetBlocks(OuterDoors);
}
Someone explain this