| 3222 | } |
| 3223 | |
| 3224 | bool ScriptingObjects::ScriptingEffect::isSuspended() const |
| 3225 | { |
| 3226 | if(checkValidObject()) |
| 3227 | { |
| 3228 | auto fx = const_cast<ScriptingEffect*>(this)->getEffect(); |
| 3229 | |
| 3230 | return fx->isSuspendedOnSilence() && fx->isCurrentlySuspended(); |
| 3231 | } |
| 3232 | |
| 3233 | return false; |
| 3234 | } |
| 3235 | |
| 3236 | String ScriptingObjects::ScriptingEffect::exportState() |
| 3237 | { |
nothing calls this directly
no test coverage detected