diff --git a/src/table/newgrf_debug_data.h b/src/table/newgrf_debug_data.h index ccd18f1e5c..807958052b 100644 --- a/src/table/newgrf_debug_data.h +++ b/src/table/newgrf_debug_data.h @@ -1329,6 +1329,7 @@ void DumpTileSignalsInfo(char *buffer, const char *last, uint index, NIExtraInfo const SignalState state = GetSignalStateByTrackdir(index, td); b += seprintf(b, last, " trackdir: %d, state: %d", td, state); if (_extra_aspects > 0 && state == SIGNAL_STATE_GREEN) seprintf(b, last, ", aspect: %d", GetSignalAspect(index, TrackdirToTrack(td))); + if (GetSignalAlwaysReserveThrough(index, TrackdirToTrack(td))) seprintf(b, last, ", always reserve through"); output.print(buffer); } }