forked from External/mage
Minor improvements - StringBuilder now have initial value
This commit is contained in:
parent
aa01db1432
commit
0bc9cf91a8
15 changed files with 61 additions and 81 deletions
|
|
@ -5,8 +5,6 @@
|
|||
*/
|
||||
package mage.game.stack;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
import mage.MageObject;
|
||||
import mage.abilities.Abilities;
|
||||
import mage.abilities.AbilitiesImpl;
|
||||
|
|
@ -21,6 +19,9 @@ import mage.players.Player;
|
|||
import mage.target.Target;
|
||||
import mage.target.TargetAmount;
|
||||
|
||||
import java.util.Set;
|
||||
import java.util.UUID;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author LevelX2
|
||||
|
|
@ -135,7 +136,7 @@ public abstract class StackObjImpl implements StackObject {
|
|||
|
||||
}
|
||||
if (!newTargetDescription.toString().equals(oldTargetDescription.toString()) && !game.isSimulation()) {
|
||||
game.informPlayers(this.getLogName() + " is now " + newTargetDescription.toString());
|
||||
game.informPlayers(this.getLogName() + " is now " + newTargetDescription);
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue