mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
- Fixed text issue with GainControlAllEffect
This commit is contained in:
parent
2ecadbc30b
commit
47ed193dff
1 changed files with 4 additions and 1 deletions
|
@ -51,6 +51,9 @@ public class GainControlAllEffect extends ContinuousEffectImpl {
|
|||
|
||||
@Override
|
||||
public String getText(Mode mode) {
|
||||
return "Gain control of " + filter;
|
||||
StringBuilder sb = new StringBuilder();
|
||||
sb.append("Gain control of ").append(filter.getMessage());
|
||||
return sb.toString();
|
||||
//return "Gain control of " + filter;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue