-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -354,8 +354,9 @@ export class Action<T extends Present> extends ScheduledTrigger<T> implements Re | |
tag = tag.getMicroStepLater(); | ||
} | ||
} | ||
|
||
if (this.action.origin == Origin.logical && !(this.action instanceof Startup)) { | ||
|
||
if (this.action.origin == Origin.logical && !(this.action instanceof Startup) | ||
&& this.action._getName() != "networkMessage") { | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
hokeun
Author
Member
|
||
tag = tag.getMicroStepLater(); | ||
} | ||
|
||
|
Probably better to create a type for these kinds of actions rather than rely on name matching...