summaryrefslogtreecommitdiff
path: root/src/economy.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-01-01 18:45:40 +0000
committerrubidium <rubidium@openttd.org>2010-01-01 18:45:40 +0000
commitb2e9b5d612a879097587b05ed2c53c19c70d84a6 (patch)
treeb3dec8b7dc6f7bd35e4b6dbb4e500c0ba2290ab0 /src/economy.cpp
parent115b20774540589572d45de3fdc7743ea4626f13 (diff)
downloadopenttd-b2e9b5d612a879097587b05ed2c53c19c70d84a6.tar.xz
(svn r18683) -Fix: it's not an other
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 76c32533e..c75d2cd19 100644
--- a/src/economy.cpp
+++ b/src/economy.cpp
@@ -304,7 +304,7 @@ void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
if (c->share_owners[i] == old_owner) {
/* Sell his shares */
CommandCost res = DoCommand(0, c->index, 0, DC_EXEC, CMD_SELL_SHARE_IN_COMPANY);
- /* Because we are in a DoCommand, we can't just execute an other one and
+ /* 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! */
SubtractMoneyFromCompany(res);
}
@@ -318,7 +318,7 @@ void ChangeOwnershipOfCompanyItems(Owner old_owner, Owner new_owner)
if (_current_company != INVALID_OWNER) {
/* Sell the shares */
CommandCost res = DoCommand(0, old_owner, 0, DC_EXEC, CMD_SELL_SHARE_IN_COMPANY);
- /* Because we are in a DoCommand, we can't just execute an other one and
+ /* 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! */
SubtractMoneyFromCompany(res);
}