This commit is contained in:
ineed bots 2023-12-07 16:19:46 -06:00
parent 3287031fe7
commit 77b4081edc
2 changed files with 4 additions and 4 deletions

View File

@ -95,13 +95,13 @@ BotBuiltinBotStop()
/*
Sets the bot's movement
<client> botMovement(<int left>, <int forward>)
<client> botMovement(<int forward>, <int right>)
*/
BotBuiltinBotMovement( left, forward )
BotBuiltinBotMovement( forward, right )
{
if ( isDefined( level.bot_builtins ) && isDefined( level.bot_builtins["botmovement"] ) )
{
self [[ level.bot_builtins["botmovement" ]]]( left, forward );
self [[ level.bot_builtins["botmovement" ]]]( forward, right );
}
}

View File

@ -70,7 +70,7 @@ do_botstop()
self BotStop();
}
do_botmovement( left, forward )
do_botmovement( forward, right )
{
}