(&mut self, meta: &ScriptMeta)
| 145 | } |
| 146 | |
| 147 | pub fn script_started(&mut self, meta: &ScriptMeta) { |
| 148 | for script_task_bucket in &meta.task_buckets { |
| 149 | if self.active_task_buckets.contains(script_task_bucket) { |
| 150 | continue; |
| 151 | } |
| 152 | |
| 153 | self.active_task_buckets.push(script_task_bucket.clone()); |
| 154 | } |
| 155 | |
| 156 | self.clear_next(); |
| 157 | } |
| 158 | } |
| 159 | |
| 160 | pub type NextAction = crate::guild_handler::NextTimerAction; |
nothing calls this directly
no test coverage detected