mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-20 12:48:00 +00:00
fix a typo in isFatPack predicate that was preventing fat packs from being shown in the spell shop
This commit is contained in:
@@ -16,7 +16,7 @@ public abstract class ItemPredicate {
|
||||
|
||||
public static final Predicate<Object> IsBoosterPack = Predicates.instanceOf(BoosterPack.class);
|
||||
public static final Predicate<Object> IsPrebuiltDeck = Predicates.instanceOf(PreconDeck.class);
|
||||
public static final Predicate<Object> IsFatPack = Predicates.instanceOf(TournamentPack.class);
|
||||
public static final Predicate<Object> IsFatPack = Predicates.instanceOf(FatPack.class);
|
||||
|
||||
/**
|
||||
* Checks that the inventory item is a Tournament Pack.
|
||||
|
||||
Reference in New Issue
Block a user