Skip to content

Commit

Permalink
Whoops
Browse files Browse the repository at this point in the history
  • Loading branch information
Scribble authored and PancakeTAS committed Jun 13, 2021
1 parent c863487 commit c039094
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/main/java/de/scribble/lp/tasmod/recording/InputRecorder.java
Original file line number Diff line number Diff line change
Expand Up @@ -119,15 +119,15 @@ private static String getStartLocation() {
*/
public static void recordTick() {
if(recording) {
// if(!Display.isActive()) {
// stopRecording();
// }
if(VirtualKeybindings.isKeyDown(ClientProxy.stopkey)) {
if(!Display.isActive()) {
stopRecording();
}
if(Keyboard.isKeyDown(Keyboard.KEY_P)) {
pauseRecording=!pauseRecording;
if(VirtualKeybindings.isKeyDown(ClientProxy.stopkey)) {
stopRecording();
}
// if(Keyboard.isKeyDown(Keyboard.KEY_P)) {
// pauseRecording=!pauseRecording;
// }
if (pauseRecording) {
return;
}
Expand Down

0 comments on commit c039094

Please sign in to comment.