mirror of
https://github.com/correl/mage.git
synced 2025-04-12 01:01:04 -09:00
Implemented empty functions setIsAllCreatureTypes
for Commander. (#8660)
* Implemented empty functions `setIsAllCreatureTypes` for Commander. * Rather than copy and pasting the code, call source object * Add pass-through for isAllCreatureTypes
This commit is contained in:
parent
f7b1078210
commit
4dc0a21e7b
1 changed files with 3 additions and 1 deletions
|
@ -307,15 +307,17 @@ public class Commander implements CommandObject {
|
|||
|
||||
@Override
|
||||
public boolean isAllCreatureTypes(Game game) {
|
||||
return false;
|
||||
return sourceObject.isAllCreatureTypes(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setIsAllCreatureTypes(boolean value) {
|
||||
sourceObject.setIsAllCreatureTypes(value);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setIsAllCreatureTypes(Game game, boolean value) {
|
||||
sourceObject.setIsAllCreatureTypes(game, value);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue