Merge pull request #10 from IKennyAgain/master

Updated
This commit is contained in:
INeedGames 2021-05-19 11:40:38 -06:00 committed by GitHub
commit 56bf257976
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -550,7 +550,7 @@ doBotMovement()
// climb through windows // climb through windows
if (self isMantling()) if (self isMantling())
self crouch(); self stand();
startPos = self.origin + (0, 0, 50); startPos = self.origin + (0, 0, 50);
@ -1974,11 +1974,11 @@ movetowards(goal)
lastOri = self.origin; lastOri = self.origin;
} }
else if(timeslow > 1.5) else if(timeslow > 0.75)
{ {
self thread doMantle(); self thread doMantle();
} }
else if(timeslow > 0.75) else if(timeslow > 1.5)
{ {
self crouch(); self crouch();
} }