summaryrefslogtreecommitdiff
path: root/src/town_cmd.cpp
diff options
context:
space:
mode:
authorWilliam Davis <daviswill048@icloud.com>2021-05-08 06:02:30 -0400
committerGitHub <noreply@github.com>2021-05-08 11:02:30 +0100
commit881e1da51d47bde0b6ddf86be1da55aceced7839 (patch)
treef5c4cca2ea0ff87d60ca21207a995c6c9dcba921 /src/town_cmd.cpp
parentf187708b3b6bcb95a0d92908f8a90c1431ca2578 (diff)
downloadopenttd-881e1da51d47bde0b6ddf86be1da55aceced7839.tar.xz
Change: Use gender-neutral pronouns in console command messages (and comments) (#9203)
Diffstat (limited to 'src/town_cmd.cpp')
-rw-r--r--src/town_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/town_cmd.cpp b/src/town_cmd.cpp
index a0f5df23e..01331a269 100644
--- a/src/town_cmd.cpp
+++ b/src/town_cmd.cpp
@@ -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);