From f76f8bc3d72ebbc9f3f7ba5a82eff89224b1bd9c Mon Sep 17 00:00:00 2001 From: marcins78 Date: Mon, 21 Jan 2013 15:09:38 +0000 Subject: [PATCH] Unofficial cultures and races are treated separately. --- .../src/main/java/com/gempukku/lotro/common/Race.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gemp-lotr/gemp-lotr-common/src/main/java/com/gempukku/lotro/common/Race.java b/gemp-lotr/gemp-lotr-common/src/main/java/com/gempukku/lotro/common/Race.java index 921f0996c..6f05c8023 100644 --- a/gemp-lotr/gemp-lotr-common/src/main/java/com/gempukku/lotro/common/Race.java +++ b/gemp-lotr/gemp-lotr-common/src/main/java/com/gempukku/lotro/common/Race.java @@ -10,7 +10,7 @@ public enum Race implements Filterable { private boolean _official; private Race(String humanReadable) { - _humanReadable = humanReadable; + this(humanReadable, true); } private Race(String humanReadable, boolean official) {