Skip to content

Commit

Permalink
triggers build: raidboss: fix p10s jade passage wrong output (#5591)
Browse files Browse the repository at this point in the history
Just played p10s in games, and it seems the result is opposite, still
need someone to take further testing. 6bec90a
  • Loading branch information
github-actions committed Jun 21, 2023
1 parent 3d657e7 commit 8ce62e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 06-ew/raid/p10s.js
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ Options.Triggers.push({
suppressSeconds: 5,
infoText: (_data, matches, output) => {
const y = parseInt(matches.y);
return (Math.floor(y / 2) % 2 === 1) ? output.boxes() : output.lines();
return (Math.floor(y / 2) % 2 === 1) ? output.lines() : output.boxes();
},
outputStrings: {
lines: {
Expand Down

0 comments on commit 8ce62e7

Please sign in to comment.