Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

Commit

Permalink
Fix camera moving in pause menu while noclipping
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav-Renz committed Apr 1, 2023
1 parent 71db7b8 commit 1e47102
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/core/client/systems/noclip.ts
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,9 @@ const NoClip = {
0,
);

NoClip.processCameraRotation();
if (!native.isPauseMenuActive()) {
NoClip.processCameraRotation();
}
},

// Noclip functions
Expand Down

0 comments on commit 1e47102

Please sign in to comment.