From 1fa946a409723ccacd4a5e86caffe6356e24da9f Mon Sep 17 00:00:00 2001 From: PhallenCassidy Date: Sat, 14 Apr 2018 08:36:07 -0400 Subject: [PATCH] Fixed tag for owned tournament cards --- .../src/main/java/com/gempukku/lotro/db/vo/CollectionType.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/db/vo/CollectionType.java b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/db/vo/CollectionType.java index 3d5e25c64..5ec870b20 100644 --- a/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/db/vo/CollectionType.java +++ b/gemp-lotr/gemp-lotr-server/src/main/java/com/gempukku/lotro/db/vo/CollectionType.java @@ -8,7 +8,7 @@ public final class CollectionType { public final static CollectionType TROPHY = new CollectionType("trophy", "Trophies"); public final static CollectionType ALL_CARDS = new CollectionType("default", "All cards"); - public final static CollectionType OWNED_TOURNAMENT_CARDS = new CollectionType("permanent+trophy", "All cards"); + public final static CollectionType OWNED_TOURNAMENT_CARDS = new CollectionType("permanent+trophy", "My cards"); private final String _code; private final String _fullName;