From e98f78a75e1103c1f465b75514719d5572b989ff Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Sun, 14 Aug 2011 17:20:28 +0200 Subject: [PATCH] use 85% jumpheight for dance --- qcsrc/server/bot/bot.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.39.2