diff --git a/src/ai.c b/src/ai.c index 16b2be9..0ba1e66 100644 --- a/src/ai.c +++ b/src/ai.c @@ -756,7 +756,7 @@ static int ai_brake(lua_State* L) { if(d >= 2*M_PI) d = fmodf(d, 2*M_PI); diff = angle_diff(d, VANGLE(cur_pilot->solid->vel)); - pilot_turn = -10*diff; + pilot_turn = 10*diff; if(ABS(diff) < MAX_DIR_ERR && VMOD(cur_pilot->solid->vel) > MIN_VEL_ERR) pilot_acc = 1.;