Skip to content

Commit 7a7e4f6

Browse files
authored
raidboss: Fix p12s player platform checking (#1067)
Fixes #1064 As mentioned in the issue, the check was reversed.
1 parent b24e00b commit 7a7e4f6

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ui/raidboss/data/07-dt/raid/r12s.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7028,9 +7028,9 @@ const triggerSet: TriggerSet<Data> = {
70287028

70297029
const x = me.PosX;
70307030
if (x < center.x)
7031-
data.myPlatform = 'east';
7032-
else
70337031
data.myPlatform = 'west';
7032+
else
7033+
data.myPlatform = 'east';
70347034
},
70357035
infoText: (data, _matches, output) => {
70367036
const pattern = data.cosmicKissPattern;
@@ -7096,9 +7096,9 @@ const triggerSet: TriggerSet<Data> = {
70967096

70977097
const x = me.PosX;
70987098
if (x < center.x)
7099-
data.myPlatform = 'east';
7100-
else
71017099
data.myPlatform = 'west';
7100+
else
7101+
data.myPlatform = 'east';
71027102
},
71037103
infoText: (data, _matches, output) => {
71047104
const pattern = data.cosmicKissPattern;
@@ -7217,9 +7217,9 @@ const triggerSet: TriggerSet<Data> = {
72177217

72187218
const x = me.PosX;
72197219
if (x < center.x)
7220-
data.myPlatform = 'east';
7221-
else
72227220
data.myPlatform = 'west';
7221+
else
7222+
data.myPlatform = 'east';
72237223
},
72247224
infoText: (data, _matches, output) => {
72257225
if (data.doomPlayers[0] === undefined) {

0 commit comments

Comments
 (0)