We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dddc56 commit f4e3ab8Copy full SHA for f4e3ab8
source/archipelago/APItem.hx
@@ -97,12 +97,13 @@ class APItem {
97
this.condition = condition;
98
this.onTrigger = onTrigger;
99
this.isException = isException;
100
+ this.toSync = toSync;
101
102
if (this.condition.type == Everywhere) {
103
this.isException = true;
104
}
105
- if (APEntryState.gonnaRunSync && toSync) {
106
+ if (APEntryState.gonnaRunSync && this.toSync) {
107
allItems.push(this); trace('Item to sync: ${this.name}');
108
} else if (!APEntryState.gonnaRunSync) {
109
allItems.push(this); trace('Item: ${this.name}');
0 commit comments