Player: fixed Name of StaticAbility Effect

This commit is contained in:
Hanmac
2016-08-13 10:27:40 +00:00
parent f4c3975e75
commit 5af5cb61c0

View File

@@ -1125,7 +1125,7 @@ public class Player extends GameEntity implements Comparable<Player> {
PlayerZone com = getZone(ZoneType.Command); PlayerZone com = getZone(ZoneType.Command);
if (!staticAbilities.containsKey(host)) { if (!staticAbilities.containsKey(host)) {
DetachedCardEffect effect = new DetachedCardEffect(host, host + "'s Effect"); DetachedCardEffect effect = new DetachedCardEffect(host, host.getName() + "'s Effect");
effect.setOwner(this); effect.setOwner(this);
staticAbilities.put(host, effect); staticAbilities.put(host, effect);
} }