Skip to content

Commit

Permalink
TsumBeta: Fix "send hearts" quick'n'dirty
Browse files Browse the repository at this point in the history
Just never do the scroll up part. Just an intermediate workaround until a better solution is done which also addresses higher ranked friends than oneself.
  • Loading branch information
mcs committed Oct 30, 2024
1 parent 512441c commit f0eb8fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified scripts/com.r2studio.TsumBeta/index.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions scripts/com.r2studio.TsumBeta/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2400,7 +2400,7 @@ Tsum.prototype.taskSendHearts = function() {
log(this.logs.startSendingHearts);
this.sleep(1000);
if (this.sendHeartMaxDuring === 0) {
this.friendPageGoTop();
// this.friendPageGoTop();
tap(0, 0, 20); // Avoid overlap between zero score and pointer location
}

Expand Down Expand Up @@ -2479,7 +2479,7 @@ Tsum.prototype.taskSendHearts = function() {
} else {
if (this.sendHeartMaxDuring !== 0) {
this.sleep(1000);
this.friendPageGoTop();
// this.friendPageGoTop();
}
debug("Ending taskSendHearts");
break;
Expand Down

0 comments on commit f0eb8fc

Please sign in to comment.