fix: hide timer trigger's cycle time verb if DelayOptions is empty (#39388)

fix: hide cycle time verb if DelayOptions is empty
This commit is contained in:
Perry Fraser
2025-08-04 23:26:02 -04:00
committed by GitHub
parent 1599a6b271
commit 96d25402c7

View File

@@ -63,7 +63,7 @@ public sealed partial class TriggerSystem
if (!args.CanInteract || !args.CanAccess || args.Hands == null) if (!args.CanInteract || !args.CanAccess || args.Hands == null)
return; return;
if (ent.Comp.DelayOptions == null || ent.Comp.DelayOptions.Count == 1) if (ent.Comp.DelayOptions.Count <= 1)
return; return;
var user = args.User; var user = args.User;