(svn r1284) -Fix: Fixed 'money-cheat' (read: bug which could give people a lot of money)
This commit is contained in:
@@ -87,6 +87,9 @@ void HandleOnEditText(WindowEvent *e) {
|
||||
// Give money
|
||||
int32 money = atoi(e->edittext.str) / GetCurrentCurrencyRate();
|
||||
char msg[100];
|
||||
|
||||
money = clamp(money, 0, 0xFFFFFFFF); // Clamp between 4 billion and 0
|
||||
|
||||
// Give 'id' the money, and substract it from ourself
|
||||
if (!DoCommandP(0, money, id, NULL, CMD_GIVE_MONEY)) break;
|
||||
|
||||
|
Reference in New Issue
Block a user