By default Mtg card price update is disabled

This commit is contained in:
marcin.sciesinski
2018-06-21 00:01:11 -07:00
parent caf2402e84
commit a1550bf3f7

View File

@@ -152,7 +152,7 @@ public class ServerBuilder {
private static boolean isMtgEnabled() {
String mtgEnabled = ApplicationConfiguration.getProperty("mtg.enabled");
return mtgEnabled == null || mtgEnabled.equals("true");
return mtgEnabled != null && mtgEnabled.equals("true");
}
public static void destroyObjects(Map<Type, Object> objectMap) {