summaryrefslogtreecommitdiff
path: root/misc_cmd.c
diff options
context:
space:
mode:
authortruelight <truelight@openttd.org>2004-12-28 09:31:38 +0000
committertruelight <truelight@openttd.org>2004-12-28 09:31:38 +0000
commitc5317396028d8ed03e1bc34d89d1bdd9ae31c04c (patch)
tree02a9337df449d22d70e253554f7bbeed511f7f96 /misc_cmd.c
parenta5a811f7677ad474d4630d074172872814ae935e (diff)
downloadopenttd-c5317396028d8ed03e1bc34d89d1bdd9ae31c04c.tar.xz
(svn r1286) -Fix: oeps, I clamp'd some numbers wrong :$
Diffstat (limited to 'misc_cmd.c')
-rw-r--r--misc_cmd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc_cmd.c b/misc_cmd.c
index 1ea3ffeef..087eb0a0d 100644
--- a/misc_cmd.c
+++ b/misc_cmd.c
@@ -285,7 +285,7 @@ int32 CmdGiveMoney(int x, int y, uint32 flags, uint32 p1, uint32 p2)
{
SET_EXPENSES_TYPE(EXPENSES_OTHER);
- p1 = clamp(p1, 0, 0xFFFFFFFF); // Clamp between 4 billion and 0
+ p1 = clamp(p1, 0, 0xFFFFFF); // Clamp between 16 million and 0
if (p1 == 0)
return CMD_ERROR;