This commit is contained in:
ineed bots 2023-12-05 14:50:22 -06:00
parent f195bdaa45
commit e9aafcf01a

View File

@ -1263,7 +1263,7 @@ readWpsFromFile( mapname )
/* /*
converts a string into a float converts a string into a float
*/ */
float( num ) float_old( num )
{ {
setCvar( "temp_dvar_bot_util", num ); setCvar( "temp_dvar_bot_util", num );
@ -1311,7 +1311,7 @@ loadmbotWps( mapname, gametype )
break; break;
wp = spawnStruct(); wp = spawnStruct();
wp.origin = ( float( t[0] ), float( t[1] ), float( t[2] ) ); wp.origin = ( float_old( t[0] ), float_old( t[1] ), float_old( t[2] ) );
stance = "stand"; stance = "stand";
@ -1344,7 +1344,7 @@ loadmbotWps( mapname, gametype )
if ( ( t.size == 9 && t[3] == "w" && t[5] == "1" ) || t[3] == "g" || t[3] == "c" ) if ( ( t.size == 9 && t[3] == "w" && t[5] == "1" ) || t[3] == "g" || t[3] == "c" )
{ {
k += 6; k += 6;
wp.angles = ( float( t[k] ), float( t[k + 1] ), 0.0 ); wp.angles = ( float_old( t[k] ), float_old( t[k + 1] ), 0.0 );
} }
wps[i] = wp; wps[i] = wp;