summaryrefslogtreecommitdiff
path: root/src/economy.cpp
diff options
context:
space:
mode:
authorrubidium42 <rubidium@openttd.org>2021-05-09 19:02:17 +0200
committerrubidium42 <rubidium42@users.noreply.github.com>2021-05-15 10:16:48 +0200
commit44ca7d93773fb816da6d353c9cde6ab14dae993a (patch)
tree2fc9399acaa114dd399eafb995d0dee8b516d18d /src/economy.cpp
parentddaedaf32a1981dcd93cafee0cae879f96207fe4 (diff)
downloadopenttd-44ca7d93773fb816da6d353c9cde6ab14dae993a.tar.xz
Change: Use gender-neutral pronouns
Diffstat (limited to 'src/economy.cpp')
-rw-r--r--src/economy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/economy.cpp b/src/economy.cpp
index ae289a51d..09adf81b9 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -311,7 +311,7 @@ void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
for (const Company *c : Company::Iterate()) {
for (i = 0; i < 4; i++) {
if (c->share_owners[i] == old_owner) {
- /* Sell his shares */
+ /* Sell its shares */
CommandCost res = DoCommand(0, c->index, 0, DC_EXEC | DC_BANKRUPT, CMD_SELL_SHARE_IN_COMPANY);
/* Because we are in a DoCommand, we can't just execute another one and
* expect the money to be removed. We need to do it ourself! */
@@ -337,7 +337,7 @@ void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
}
/* Temporarily increase the company's money, to be sure that
- * removing his/her property doesn't fail because of lack of money.
+ * removing their property doesn't fail because of lack of money.
* Not too drastically though, because it could overflow */
if (new_owner == INVALID_OWNER) {
Company::Get(old_owner)->money = UINT64_MAX >> 2; // jackpot ;p