| 121 | } |
| 122 | |
| 123 | void Effect::setLooped(bool l) { |
| 124 | if(looped==l) |
| 125 | return; |
| 126 | looped = l; |
| 127 | if(next!=nullptr) |
| 128 | next->setLooped(l); |
| 129 | pfx.setLooped(l); |
| 130 | } |
| 131 | |
| 132 | void Effect::setTarget(const Npc* tg) { |
| 133 | if(next!=nullptr) |
no outgoing calls
no test coverage detected