From: Carsten W. <ca...@us...> - 2007-05-14 22:29:35
|
Update of /cvsroot/jake2/jake2/src/jake2/client In directory sc8-pr-cvs6.sourceforge.net:/tmp/cvs-serv7711/src/jake2/client Modified Files: CL_pred.java Log Message: use Lib.atof instead Index: CL_pred.java =================================================================== RCS file: /cvsroot/jake2/jake2/src/jake2/client/CL_pred.java,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** CL_pred.java 4 Oct 2004 12:50:37 -0000 1.6 --- CL_pred.java 14 May 2007 22:29:30 -0000 1.7 *************** *** 30,33 **** --- 30,34 ---- import jake2.game.*; import jake2.qcommon.*; + import jake2.util.Lib; import jake2.util.Math3D; *************** *** 252,261 **** }; ! try { ! PMove.pm_airaccelerate = Float ! .parseFloat(Globals.cl.configstrings[Defines.CS_AIRACCEL]); ! } catch (Exception e) { ! PMove.pm_airaccelerate = 0; ! } // bugfix (rst) yeah !!!!!!!! found the solution to the B E W E G U N G --- 253,257 ---- }; ! PMove.pm_airaccelerate = Lib.atof(Globals.cl.configstrings[Defines.CS_AIRACCEL]); // bugfix (rst) yeah !!!!!!!! found the solution to the B E W E G U N G |