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:
parent
1599a6b271
commit
96d25402c7
1 changed files with 1 additions and 1 deletions
|
|
@ -63,7 +63,7 @@ public sealed partial class TriggerSystem
|
|||
if (!args.CanInteract || !args.CanAccess || args.Hands == null)
|
||||
return;
|
||||
|
||||
if (ent.Comp.DelayOptions == null || ent.Comp.DelayOptions.Count == 1)
|
||||
if (ent.Comp.DelayOptions.Count <= 1)
|
||||
return;
|
||||
|
||||
var user = args.User;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue