This commit is contained in:
ineed bots 2023-12-07 16:16:07 -06:00
parent c3ca2314fc
commit a9b35c3502
2 changed files with 5 additions and 5 deletions

View File

@ -107,13 +107,13 @@ BotBuiltinBotStop()
/* /*
Sets the bot's movement 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"] ) ) 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

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