forked from External/mage
parent
c38f96ae55
commit
ffa94811f6
2 changed files with 6 additions and 6 deletions
|
|
@ -1868,13 +1868,13 @@ public class TestPlayer implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setCommanderId(UUID commanderId) {
|
||||
computerPlayer.setCommanderId(commanderId);
|
||||
public void addCommanderId(UUID commanderId) {
|
||||
computerPlayer.addCommanderId(commanderId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getCommanderId() {
|
||||
return computerPlayer.getCommanderId();
|
||||
public Set<UUID> getCommandersIds() {
|
||||
return computerPlayer.getCommandersIds();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
|
|
@ -1083,12 +1083,12 @@ public class PlayerStub implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void setCommanderId(UUID commanderId) {
|
||||
public void addCommanderId(UUID commanderId) {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getCommanderId() {
|
||||
public Set<UUID> getCommandersIds() {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue