mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
Cleanup a couple comments
This commit is contained in:
@@ -1981,7 +1981,7 @@ public class CardFactoryUtil {
|
||||
} else if (keyword.startsWith("Prize")) {
|
||||
final String[] k = keyword.split(":");
|
||||
|
||||
SpellAbility sa = AbilityFactory.getAbility(card, k[1]); //Is this the right thing?
|
||||
SpellAbility sa = AbilityFactory.getAbility(card, k[1]);
|
||||
String descStr = "Prize — " + sa.getDescription();
|
||||
|
||||
final String trigStr = "Mode$ ClaimPrize | Static$ True | TriggerZones$ Battlefield | ValidCard$ Card.Self" +
|
||||
|
||||
@@ -107,7 +107,6 @@ public abstract class ItemManager<T extends InventoryItem> extends FContainer im
|
||||
* ItemManager Constructor.
|
||||
*
|
||||
* @param genericType0 the class of item that this table will contain
|
||||
* @param statLabels0 stat labels for this item manager
|
||||
* @param wantUnique0 whether this table should display only one item with the same name
|
||||
*/
|
||||
protected ItemManager(final Class<T> genericType0, final boolean wantUnique0) {
|
||||
@@ -754,7 +753,7 @@ public abstract class ItemManager<T extends InventoryItem> extends FContainer im
|
||||
}
|
||||
|
||||
/**
|
||||
* Programmatically method to set this ItemManager's advanced search filter value.
|
||||
* Programmatic method to set this ItemManager's advanced search filter value.
|
||||
* Other filters will be cleared.
|
||||
*/
|
||||
public void applyAdvancedSearchFilter(String[] filterStrings, boolean joinAnd) {
|
||||
|
||||
Reference in New Issue
Block a user