Change: Use gender-neutral pronouns in console command messages (and comments) (#9203)

This commit is contained in:
William Davis
2021-05-08 06:02:30 -04:00
committed by GitHub
parent f187708b3b
commit 881e1da51d
19 changed files with 29 additions and 29 deletions

View File

@@ -3209,7 +3209,7 @@ static CommandCost TownActionFundBuildings(Town *t, DoCommandFlag flags)
* than 1 house per 2 * TOWN_GROWTH_TICKS ticks.
* Also emulate original behaviour when town was only growing in
* TOWN_GROWTH_TICKS intervals, to make sure that it's not too
* tick-perfect and gives player some time window where he can
* tick-perfect and gives player some time window where they can
* spam funding with the exact same efficiency.
*/
t->grow_counter = std::min<uint16>(t->grow_counter, 2 * TOWN_GROWTH_TICKS - (t->growth_rate - t->grow_counter) % TOWN_GROWTH_TICKS);