From db16262698bcd1d092ed51a104dc4d714045d726 Mon Sep 17 00:00:00 2001 From: truelight Date: Sun, 19 Dec 2004 15:14:55 +0000 Subject: (svn r1174) -Fix: [Network] All strings can now be translated (no more hardcoded strings) --- main_gui.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'main_gui.c') diff --git a/main_gui.c b/main_gui.c index 1f1b01712..6994767ed 100644 --- a/main_gui.c +++ b/main_gui.c @@ -91,8 +91,7 @@ void HandleOnEditText(WindowEvent *e) { if (!DoCommandP(0, money, id, NULL, CMD_GIVE_MONEY)) break; // Inform the player of this action - SetDParam(0, money); - GetString(msg, STR_NETWORK_GIVE_MONEY); + snprintf(msg, 100, "%d", money); if (!_network_server) SEND_COMMAND(PACKET_CLIENT_CHAT)(NETWORK_ACTION_GIVE_MONEY, DESTTYPE_PLAYER, id + 1, msg); -- cgit v1.2.3-54-g00ecf