fixed loading of the bomb explosion time from the config file

origin
stpohle 22 years ago
parent 4cb6c047a9
commit f8c6c648a4

@ -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
==============

@ -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;

Loading…
Cancel
Save