From f8c6c648a4253d4a1d6300b938c75182b72b1c6b Mon Sep 17 00:00:00 2001 From: stpohle Date: Mon, 2 Feb 2004 23:02:14 +0000 Subject: [PATCH] fixed loading of the bomb explosion time from the config file --- ChangeLog | 5 ++++- src/configuration.c | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8972f5b..20cf41c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,4 @@ -$Id: ChangeLog,v 1.65 2004/02/02 00:01:42 stpohle Exp $ +$Id: ChangeLog,v 1.66 2004/02/02 23:02:14 stpohle Exp $ - Fixed: forgot to put the Message F4 to start the game into the playerselection screen. I put this only into the @@ -12,6 +12,9 @@ $Id: ChangeLog,v 1.65 2004/02/02 00:01:42 stpohle Exp $ packets to the other clients. I send even some Serveronly packets. +- Fixed: Bombtickingtime could not be readen from the config + file. + Version 0.11.1 ============== diff --git a/src/configuration.c b/src/configuration.c index b53047c..a4ce0bb 100644 --- a/src/configuration.c +++ b/src/configuration.c @@ -333,7 +333,7 @@ config_write () fprintf (config, "start_bombs=%d\n", bman.start_bombs); fprintf (config, "start_range=%d\n", bman.start_range); fprintf (config, "start_speed=%f\n", bman.start_speed); - fprintf (config, "bomb_tickingtime=%f\n", bman.bomb_tickingtime); + fprintf (config, "bomb_ticking=%f\n", bman.bomb_tickingtime); fprintf (config, "dropitemsondeath=%d\n", bman.dropitemsondeath); fclose (config); return 0;