small change

This commit is contained in:
theelk801 2025-05-14 16:32:45 -04:00
parent e3e7f65b3c
commit ca39195433
2 changed files with 8 additions and 3 deletions

View file

@ -31,7 +31,13 @@ public abstract class OneShotEffect extends EffectImpl {
}
@Override
public Effect setTargetPointer(TargetPointer targetPointer) {
public OneShotEffect concatBy(String concatPrefix) {
super.concatBy(concatPrefix);
return this;
}
@Override
public OneShotEffect setTargetPointer(TargetPointer targetPointer) {
super.setTargetPointer(targetPointer);
return this;
}