1
0
mirror of https://github.com/OpenTTD/OpenTTD synced 2026-01-22 19:54:06 +01:00

Change: Transmitter object only spawns after original base year (#14786)

This commit is contained in:
Tyler Trahan
2026-01-08 15:21:45 -05:00
committed by GitHub
parent 55f05846a5
commit 9c6100c32a
2 changed files with 7 additions and 7 deletions

View File

@@ -87,7 +87,7 @@ bool ObjectSpec::IsEverAvailable() const
*/
bool ObjectSpec::WasEverAvailable() const
{
return this->IsEverAvailable() && TimerGameCalendar::date > this->introduction_date;
return this->IsEverAvailable() && TimerGameCalendar::date >= this->introduction_date;
}
/**