mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 04:38:00 +00:00
- Updated two isReusable() functions.
This commit is contained in:
@@ -78,7 +78,6 @@ public class CostPutCounter extends CostPartWithList {
|
|||||||
super(amount, type, description);
|
super(amount, type, description);
|
||||||
this.counter = cntr;
|
this.counter = cntr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isReusable() { return true; }
|
public boolean isReusable() { return true; }
|
||||||
|
|||||||
@@ -56,6 +56,9 @@ public class CostReveal extends CostPartWithList {
|
|||||||
super(amount, type, description);
|
super(amount, type, description);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isReusable() { return true; }
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -45,7 +45,7 @@ public class CostUnattach extends CostPartWithList {
|
|||||||
public boolean isUndoable() { return false; }
|
public boolean isUndoable() { return false; }
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean isReusable() { return false; }
|
public boolean isReusable() { return true; }
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* (non-Javadoc)
|
* (non-Javadoc)
|
||||||
|
|||||||
Reference in New Issue
Block a user