Refactored Belltower Sphinx implementation.

This commit is contained in:
magenoxx 2011-08-12 08:51:35 +04:00
parent 8d673217e7
commit 4a3dfed92f
2 changed files with 12 additions and 18 deletions

View file

@ -61,6 +61,10 @@ public class PutLibraryIntoGraveTargetEffect extends OneShotEffect<PutLibraryInt
this.amount = effect.amount.clone();
}
public void setAmount(DynamicValue value) {
this.amount = value;
}
@Override
public PutLibraryIntoGraveTargetEffect copy() {
return new PutLibraryIntoGraveTargetEffect(this);