Merge pull request #392 from westonCoder/falling-funnel-fix

Fixes getting stuck infinitly falling
This commit is contained in:
lambertjamesd 2023-10-30 20:23:59 -06:00 committed by GitHub
commit 02237dcfb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -927,7 +927,7 @@ void playerUpdate(struct Player* player) {
}
if (gSaveData.controls.flags & ControlSavePortalFunneling){
if ((gSaveData.controls.flags & ControlSavePortalFunneling) && (vector2MagSqr(&moveInput) == 0.0f)){
playerPortalFunnel(player);
}