From: Rudolf Polzer Date: Sun, 14 Aug 2011 15:20:28 +0000 (+0200) Subject: use 85% jumpheight for dance X-Git-Tag: xonotic-v0.5.0~148^2~5 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=e98f78a75e1103c1f465b75514719d5572b989ff;p=xonotic%2Fxonotic-data.pk3dir.git use 85% jumpheight for dance --- diff --git a/qcsrc/server/bot/bot.qc b/qcsrc/server/bot/bot.qc index ffa44090a..351625bb5 100644 --- a/qcsrc/server/bot/bot.qc +++ b/qcsrc/server/bot/bot.qc @@ -533,7 +533,7 @@ void bot_calculate_stepheightvec(void) { stepheightvec = autocvar_sv_stepheight * '0 0 1'; jumpstepheightvec = stepheightvec + - ((autocvar_sv_jumpvelocity * autocvar_sv_jumpvelocity) / (2 * autocvar_sv_gravity)) * '0 0 0.75'; + ((autocvar_sv_jumpvelocity * autocvar_sv_jumpvelocity) / (2 * autocvar_sv_gravity)) * '0 0 0.85'; // 0.75 factor is for safety to make the jumps easy }