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.
2 parents c922fab + 5403a62 commit 64fc347Copy full SHA for 64fc347
Code/TriggerTrigger.cs
@@ -187,6 +187,12 @@ public override void Update() {
187
UpdateTriggers(player);
188
}
189
190
+
191
+ if (resetActivation)
192
+ {
193
+ externalActivation = false;
194
+ resetActivation = false;
195
+ }
196
197
198
public void UpdateConditions(Player player) {
@@ -337,11 +343,6 @@ public bool GetActivateCondition(Player player) {
337
343
338
344
if (externalActivation) {
339
345
result = true;
340
- if (resetActivation)
341
- {
342
- externalActivation = false;
- resetActivation = false;
- }
346
347
if (invertCondition) {
348
result = !result;
0 commit comments