Jump to content

What is wrong with powering the transit tube entry?


Recommended Posts

Suddenly my transittube entry is without power and no matter what i do i can't get it powered any more.

Even hooking it up directly to the heavy watt wire doesn't work.  What is wrong?

 

20190522185529_1.jpg

Ok found the issue, the automation wire had turned it off. Still i find it strange that it is indicating that it is not powered in such a case.

Link to comment
Share on other sites

It also tells you it's not powered if you don't have an access tube hooked up to it. Think of that symbol on a transit tube as a general fault light that just looks exactly like a power symbol, that is totally not confusing at all.

Link to comment
Share on other sites

There are symbols for: flooded, broken, no inlet/outlet, no power, no foundation. Turned off by automation is actually the only one that does not have a symbol i think. It would be better not to show a symbol at all as it forces to read the text when hovering over.

Link to comment
Share on other sites

3 possible reasons: 

- you have an automation wire crossing the buildings port, disabling it.

- Its the "not recognizing the tube" glitch. If the station thinks there is not tube connected, it will not draw power. Deconstruct the tube entering the station, and rebuild it.

- general bug

 

Link to comment
Share on other sites

1 hour ago, SharraShimada said:

3 possible reasons: 

- you have an automation wire crossing the buildings port, disabling it.

- Its the "not recognizing the tube" glitch. If the station thinks there is not tube connected, it will not draw power. Deconstruct the tube entering the station, and rebuild it.

- general bug

 

Another possible issue would be insufficient power production. The batteries look barely charged and the tube access is basically a battery storing charge for 3 dupes.

Link to comment
Share on other sites

7 hours ago, ccXanthos said:

Ok found the issue, the automation wire had turned it off. Still i find it strange that it is indicating that it is not powered in such a case.

	private bool CanAcceptMorePower()
	{
		return this.operational.IsOperational && (this.button == null || this.button.IsEnabled) && this.energyConsumer.IsExternallyPowered && this.availableJoules < this.jouleCapacity;
	}

Apparently it needs to be operational in order to charge the internal battery. Makes sense if you consider that a standby automation signal is supposed to make buildings consume 0 W and as such can be used to control where the power goes and prevent overloading the wire.

I think what happened in your case is that you drained the battery (or never charged it) and then you turned off the building. It kept complaining that it needed to be charged in order to be used, but at the same time you told it to not charge.

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...