diff --git a/maps/mp/bots/_bot_utility.gsc b/maps/mp/bots/_bot_utility.gsc index 76e97cf..aab411b 100644 --- a/maps/mp/bots/_bot_utility.gsc +++ b/maps/mp/bots/_bot_utility.gsc @@ -102,13 +102,13 @@ BotBuiltinBotStop() /* Sets the bot's movement - botMovement(, ) + botMovement(, ) */ -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 ); } } diff --git a/scripts/bots_adapter.gsc b/scripts/bots_adapter.gsc index 9ca674e..9b21b0c 100644 --- a/scripts/bots_adapter.gsc +++ b/scripts/bots_adapter.gsc @@ -41,7 +41,7 @@ do_botstop() self BotStop(); } -do_botmovement( left, forward ) +do_botmovement( forward, right ) { - self BotMovement( left, forward ); + self BotMovement( forward, right ); }