File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 11using System . Collections . ObjectModel ;
22using JetBrains . Annotations ;
33using LabApi . Features . Wrappers ;
4+ using MEC ;
45using SER . Code . ContextSystem ;
56using SER . Code . ContextSystem . BaseContexts ;
67using SER . Code . ContextSystem . Contexts ;
@@ -71,7 +72,7 @@ public required ScriptExecutor Executor
7172 public TimeSpan TimeRunning => StartTime == DateTime . MinValue ? TimeSpan . Zero : DateTime . Now - StartTime ;
7273
7374 private static readonly HashSet < Script > RunningScriptsList = [ ] ;
74- public static readonly Script [ ] RunningScripts = RunningScriptsList . ToArray ( ) ;
75+ public static Script [ ] RunningScripts => RunningScriptsList . ToArray ( ) ;
7576
7677 private readonly HashSet < Variable > _localVariables = [ ] ;
7778 public Variable [ ] LocalVariables => _localVariables . ToArray ( ) ;
You can’t perform that action at this time.
0 commit comments