0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-05-29 00:03:45 +02:00

ircd:Ⓜ️:vm: Add opts to conditions for edu branch.

This commit is contained in:
Jason Volk 2020-12-01 02:24:40 -08:00
parent d2427fe4da
commit 25bee046b3

View file

@ -565,7 +565,7 @@ try
// Branch on whether the event is an EDU or a PDU
const fault ret
{
event.event_id?
event.event_id && !opts.edu?
execute_pdu(eval, event):
execute_edu(eval, event)
};